We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff9eb56 commit aa3409cCopy full SHA for aa3409c
src/librustc_data_structures/bitvec.rs
@@ -184,7 +184,7 @@ impl BitMatrix {
184
/// Sets the cell at `(row, column)` to true. Put another way, add
185
/// `column` to the bitset for `row`.
186
///
187
- /// Returns true if this changed the matrix, and false otherwies.
+ /// Returns true if this changed the matrix, and false otherwise.
188
pub fn add(&mut self, row: usize, column: usize) -> bool {
189
let (start, _) = self.range(row);
190
let (word, mask) = word_mask(column);
0 commit comments