diff options
| author | Martin Lindhe <martin-commit@ubique.se> | 2017-11-21 15:33:45 +0100 |
|---|---|---|
| committer | Martin Lindhe <martin-commit@ubique.se> | 2017-11-21 15:33:45 +0100 |
| commit | ece9a57d1b6e10ef2ad1dffd19fd6033cdc760ee (patch) | |
| tree | 9c6d182d6229e4c1fd08fc5064a17e63bad89d89 /src/librustc_data_structures | |
| parent | ebda7662dbb79ab0a9feb79d367d0818c23ff1dc (diff) | |
| download | rust-ece9a57d1b6e10ef2ad1dffd19fd6033cdc760ee.tar.gz rust-ece9a57d1b6e10ef2ad1dffd19fd6033cdc760ee.zip | |
fix some typos
Diffstat (limited to 'src/librustc_data_structures')
| -rw-r--r-- | src/librustc_data_structures/array_vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/array_vec.rs b/src/librustc_data_structures/array_vec.rs index 1e67461e055..1b39e029604 100644 --- a/src/librustc_data_structures/array_vec.rs +++ b/src/librustc_data_structures/array_vec.rs @@ -111,7 +111,7 @@ impl<A: Array> ArrayVec<A> { // Memory safety // // When the Drain is first created, it shortens the length of - // the source vector to make sure no uninitalized or moved-from elements + // the source vector to make sure no uninitialized or moved-from elements // are accessible at all if the Drain's destructor never gets to run. // // Drain will ptr::read out the values to remove. |
