about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-12-18 13:43:45 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-12-18 16:47:38 +0530
commit7eb7bc2e04ad0f5f8ade80ff480ef8d2957e59d0 (patch)
tree679096f388fbceff6b77fcf75f35d08a886dcdf5 /src
parentc2902965cb53d2afd09ea2ce7b3f9c314dc7b072 (diff)
parent2a1efca2f332055ff1a68164040afbb9e394edd0 (diff)
downloadrust-7eb7bc2e04ad0f5f8ade80ff480ef8d2957e59d0.tar.gz
rust-7eb7bc2e04ad0f5f8ade80ff480ef8d2957e59d0.zip
Rollup merge of #30398 - jwworth:pull-request-1450205451, r=sanxiyn
This fixes a double word typo, 'the'.
Diffstat (limited to 'src')
-rw-r--r--src/librustc_trans/trans/adt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_trans/trans/adt.rs b/src/librustc_trans/trans/adt.rs
index f6f1918fd07..c744ef32127 100644
--- a/src/librustc_trans/trans/adt.rs
+++ b/src/librustc_trans/trans/adt.rs
@@ -1165,7 +1165,7 @@ pub fn struct_field_ptr<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, st: &Struct<'tcx>, v
 
     let meta = val.meta;
 
-    // Calculate the unaligned offset of the the unsized field.
+    // Calculate the unaligned offset of the unsized field.
     let mut offset = 0;
     for &ty in &st.fields[0..ix] {
         let llty = type_of::sizing_type_of(ccx, ty);