File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed
branches/tmp/src/libstd/io Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
34
refs/heads/beta: a3b13610c5b93d9ada072471a001a5613df6a960
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
- refs/heads/tmp: 92994460309a45d83affec8f4e5ca8ce386f0e46
37
+ refs/heads/tmp: 8b6c0fd410ac118e5159b727f33649af5d5442fa
38
38
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
39
39
refs/tags/homu-tmp: 28a0b25f424090255966273994748a9f9901059f
40
40
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412
Original file line number Diff line number Diff line change @@ -17,17 +17,14 @@ use iter::repeat;
17
17
use num:: Int ;
18
18
use slice;
19
19
20
- /// A `Cursor` is a type which wraps another I/O object to provide a `Seek`
20
+ /// A `Cursor` is a type which wraps a non- I/O object to provide a `Seek`
21
21
/// implementation.
22
22
///
23
- /// Cursors are currently typically used with memory buffer objects in order to
24
- /// allow `Seek` plus `Read` and `Write` implementations. For example, common
25
- /// cursor types include:
23
+ /// Cursors are typically used with memory buffer objects in order to allow
24
+ /// `Seek`, `Read`, and `Write` implementations. For example, common cursor types
25
+ /// include `Cursor<Vec<u8>>` and `Cursor<&[u8]>`.
26
26
///
27
- /// * `Cursor<Vec<u8>>`
28
- /// * `Cursor<&[u8]>`
29
- ///
30
- /// Implementations of the I/O traits for `Cursor<T>` are not currently generic
27
+ /// Implementations of the I/O traits for `Cursor<T>` are currently not generic
31
28
/// over `T` itself. Instead, specific implementations are provided for various
32
29
/// in-memory buffer types like `Vec<u8>` and `&[u8]`.
33
30
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
You can’t perform that action at this time.
0 commit comments