diff options
| author | Santiago Pastorino <spastorino@gmail.com> | 2018-02-15 19:35:11 -0300 |
|---|---|---|
| committer | Santiago Pastorino <spastorino@gmail.com> | 2018-02-22 21:27:52 -0300 |
| commit | aa3409c898b2418c927f3db1743a777fa05bb514 (patch) | |
| tree | ab61c891e2cf83193e9bcf838c5987bf10585924 | |
| parent | ff9eb56c6e4bff6c1c74bd628a7e0dd79321829b (diff) | |
| download | rust-aa3409c898b2418c927f3db1743a777fa05bb514.tar.gz rust-aa3409c898b2418c927f3db1743a777fa05bb514.zip | |
Fix typo otherwies -> otherwise
| -rw-r--r-- | src/librustc_data_structures/bitvec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/bitvec.rs b/src/librustc_data_structures/bitvec.rs index 688e9ca9e03..e13ccbbd89c 100644 --- a/src/librustc_data_structures/bitvec.rs +++ b/src/librustc_data_structures/bitvec.rs @@ -184,7 +184,7 @@ impl BitMatrix { /// Sets the cell at `(row, column)` to true. Put another way, add /// `column` to the bitset for `row`. /// - /// Returns true if this changed the matrix, and false otherwies. + /// Returns true if this changed the matrix, and false otherwise. pub fn add(&mut self, row: usize, column: usize) -> bool { let (start, _) = self.range(row); let (word, mask) = word_mask(column); |
