Skip to content

Commit eb20645

Browse files
committed
---
yaml --- r: 7712 b: refs/heads/snap-stage3 c: 4e2d8d8 h: refs/heads/master v: v3
1 parent dfbf04b commit eb20645

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: cd9b344f7b5fe93c52ea7cbce83b21d776fd0b8e
4+
refs/heads/snap-stage3: 4e2d8d8051d96288ed52fdc897008b95cee43458
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/snap-stage3/src/libcore/core.rc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@
77
#[license = "MIT"];
88
#[crate_type = "lib"];
99

10+
#[doc(
11+
brief = "The Rust core library",
12+
desc =
13+
"The core library provides functionality that is closely tied to \
14+
the Rust built-in types and runtime services, or that is used in nearly \
15+
every non-trivial program.\
16+
\
17+
The core library is linked by default to all crates and the contents \
18+
imported. The effect is as though the user had written the following: \
19+
\
20+
> use core; \
21+
> import core::*; \
22+
\
23+
This behavior can be disabled with the `--no-core` compiler flag."
24+
)];
25+
1026
export box, char, float, bessel, f32, f64, int, str, ptr;
1127
export uint, u8, u32, u64, vec, bool;
1228
export either, option, result;

0 commit comments

Comments
 (0)