Skip to content

Commit aa3409c

Browse files
committed
Fix typo otherwies -> otherwise
1 parent ff9eb56 commit aa3409c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_data_structures/bitvec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ impl BitMatrix {
184184
/// Sets the cell at `(row, column)` to true. Put another way, add
185185
/// `column` to the bitset for `row`.
186186
///
187-
/// Returns true if this changed the matrix, and false otherwies.
187+
/// Returns true if this changed the matrix, and false otherwise.
188188
pub fn add(&mut self, row: usize, column: usize) -> bool {
189189
let (start, _) = self.range(row);
190190
let (word, mask) = word_mask(column);

0 commit comments

Comments
 (0)