Skip to content

Commit 3a911db

Browse files
committed
---
yaml --- r: 192237 b: refs/heads/master c: 6a5b1e9 h: refs/heads/master i: 192235: ce702c7 v: v3
1 parent 2097a1e commit 3a911db

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 68af51212350094cd1533a7e7f37106241628731
2+
refs/heads/master: 6a5b1e9f8ef3b46ad46f9878e5869153f081a32b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a923278c6278c63468d74772c58dbf788e88f58c
55
refs/heads/try: ce76bff75603a754d092456285ff455eb871633d

trunk/src/libstd/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
//!
4141
//! ## Vectors, slices and strings
4242
//!
43-
//! The common container type, `Vec`, a growable vector backed by an
44-
//! array, lives in the [`vec`](vec/index.html) module. References to
45-
//! arrays, `&[T]`, more commonly called "slices", are built-in types
46-
//! for which the [`slice`](slice/index.html) module defines many
47-
//! methods.
43+
//! The common container type, `Vec`, a growable vector backed by an array,
44+
//! lives in the [`vec`](vec/index.html) module. Contiguous, unsized regions
45+
//! of memory, `[T]`, commonly called "slices", and their borrowed versions,
46+
//! `&[T]`, commonly called "borrowed slices", are built-in types for which the
47+
//! for which the [`slice`](slice/index.html) module defines many methods.
4848
//!
4949
//! `&str`, a UTF-8 string, is a built-in type, and the standard library
5050
//! defines methods for it on a variety of traits in the

0 commit comments

Comments
 (0)