rust/src/libstd/io
Steve Klabnik c0d21cfe58 Rollup merge of #27345 - killercup:patch-15, r=alexcrichton
The first paragraph of the docs of the Cursor struct ([src](ff6c6ce917/src/libstd/io/cursor.rs (L18-L21))) contains a Markdown link. In listings (like <http://doc.rust-lang.org/nightly/std/io/>), this won't get rendered:

![std__io_-_rust](https://cloud.githubusercontent.com/assets/20063/8925843/5c5281a8-350b-11e5-8c63-09a369d746b0.png)

The hotfix would be to change the link by reference:

```rust
/// A `Cursor` wraps another type and provides it with a [`Seek`][seek]
/// implementation.
///
/// [seek]: trait.Seek.html
```

to a direct link:

```rust
/// A `Cursor` wraps another type and provides it with a
/// [`Seek`](trait.Seek.html) implementation.
```

_I have not tested this as I don't have access to a machine for compiling Rust right now._

(This seems to be a more general issue, but I think I have seen this mentioned before. This PR is just to hotfix on particular occurrence. Rustdoc seems to only read the first paragraph of a doc string for the description in index pages, and _after that_ convert Markdown to HTML.)

r? @steveklabnik
2015-07-29 10:30:35 -04:00
..
buffered.rs Rollup merge of #27341 - steveklabnik:remove_warning, r=alexcrichton 2015-07-29 10:30:35 -04:00
cursor.rs IO Docs: Fix Link in Cursor description 2015-07-28 09:39:15 +02:00
error.rs Add more std::io documentation. 2015-07-10 10:24:11 -04:00
impls.rs std: Stabilize last bits of io::Error 2015-03-31 16:12:48 -07:00
lazy.rs More test fixes and fallout of stability changes 2015-06-17 09:07:17 -07:00
mod.rs Rollup merge of #27327 - steveklabnik:fix_take, r=alexcrichton 2015-07-29 10:30:34 -04:00
prelude.rs doc: remove redundant info 2015-07-12 00:51:07 +02:00
stdio.rs Add specializations of read_to_end for Stdin, TcpStream and File, 2015-07-15 21:30:18 +01:00
util.rs fix two links 2015-07-27 22:25:06 -04:00