Fix typo otherwies -> otherwise

This commit is contained in:
Santiago Pastorino 2018-02-15 19:35:11 -03:00
parent ff9eb56c6e
commit aa3409c898
No known key found for this signature in database
GPG Key ID: 88C941CDA1D46432
1 changed files with 1 additions and 1 deletions

View File

@ -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);