@@ -1455,7 +1455,7 @@ let stack_crayons: &str = "Almond, AntiqueBrass, Apricot";
1455
1455
let stack_crayons: &str = &"Aquamarine, Asparagus, AtomicTangerine";
1456
1456
1457
1457
// A local heap (managed) string
1458
- let local_crayons: @str = @"BananMania , Beaver, Bittersweet";
1458
+ let local_crayons: @str = @"BananaMania , Beaver, Bittersweet";
1459
1459
1460
1460
// An exchange heap (owned) string
1461
1461
let exchange_crayons: ~str = ~"Black, BlizzardBlue, Blue";
@@ -2133,7 +2133,7 @@ let stacky: &Drawable = &new_circle() as &Drawable;
2133
2133
2134
2134
Method calls to trait types are _ dynamically dispatched_ . Since the
2135
2135
compiler doesn't know specifically which functions to call at compile
2136
- time it uses a lookup table (also known as a vtable or dictionary) to
2136
+ time, it uses a lookup table (also known as a vtable or dictionary) to
2137
2137
select the method to call at runtime.
2138
2138
2139
2139
This usage of traits is similar to Java interfaces.
@@ -2402,7 +2402,7 @@ tutorials on individual topics.
2402
2402
2403
2403
There is further documentation on the [ wiki] , including articles about
2404
2404
[ unit testing] in Rust, [ documenting] [ rustdoc ] and [ packaging] [ cargo ]
2405
- Rust code, and a discussion of the [ attributes] used to apply metada
2405
+ Rust code, and a discussion of the [ attributes] used to apply metadata
2406
2406
to code.
2407
2407
2408
2408
[ borrow ] : tutorial-borrowed-ptr.html
0 commit comments