diff options
| author | bors <bors@rust-lang.org> | 2014-05-22 20:56:18 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-22 20:56:18 -0700 |
| commit | 02117dd1bc10c65ca1f56fd81996a573c88ccfd5 (patch) | |
| tree | 37eef5dbc14141cacc83d97e025cc398a85f7508 /src/libterm | |
| parent | ec0258a381b88b5574e3f8ce72ae553ac3a574b7 (diff) | |
| parent | d3fde8476b9cdce734dcec6b2003a482c5908235 (diff) | |
| download | rust-02117dd1bc10c65ca1f56fd81996a573c88ccfd5.tar.gz rust-02117dd1bc10c65ca1f56fd81996a573c88ccfd5.zip | |
auto merge of #14357 : huonw/rust/spelling, r=pnkfelix
The span on a inner doc-comment would point to the next token, e.g. the span for the `a` line points to the `b` line, and the span of `b` points to the `fn`.
```rust
//! a
//! b
fn bar() {}
```
Diffstat (limited to 'src/libterm')
| -rw-r--r-- | src/libterm/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs index d454ad08e4f..63ae349b0ef 100644 --- a/src/libterm/lib.rs +++ b/src/libterm/lib.rs @@ -11,7 +11,7 @@ //! Terminal formatting library. //! //! This crate provides the `Terminal` trait, which abstracts over an [ANSI -//! Termina][ansi] to provide color printing, among other things. There are two implementations, +//! Terminal][ansi] to provide color printing, among other things. There are two implementations, //! the `TerminfoTerminal`, which uses control characters from a //! [terminfo][ti] database, and `WinConsole`, which uses the [Win32 Console //! API][win]. |
