docs: update to build more backends (#81)

Co-authored-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
Arijit Basu 2023-03-05 17:55:36 +05:30 committed by GitHub
parent 73f7f16298
commit 79d0eadbd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -20,6 +20,9 @@ rust-version = "1.59.0"
[features]
default = ["crossterm"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
bitflags = "1.3"
cassowary = "0.3"

View file

@ -176,7 +176,7 @@ impl Buffer {
&mut self.content[i]
}
/// Returns the index in the Vec<Cell> for the given global (x, y) coordinates.
/// Returns the index in the `Vec<Cell>` for the given global (x, y) coordinates.
///
/// Global coordinates are offset by the Buffer's area offset (`x`/`y`).
///