about summary refs log tree commit diff
path: root/src/libcore/core.rc
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-19 17:17:00 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-19 17:17:19 -0700
commit7bf0aa1c4367fd6904f68457233c360dafb27a93 (patch)
tree939dd0e914f30ab034b4097e1bd3d5f2fe189892 /src/libcore/core.rc
parentcfed923600e2f7ad34241501200d595abccdeb54 (diff)
core: More doc cleanup
Diffstat (limited to 'src/libcore/core.rc')
-rw-r--r--src/libcore/core.rc14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc
index 96d8db5a1e2..09677084257 100644
--- a/src/libcore/core.rc
+++ b/src/libcore/core.rc
@@ -10,12 +10,14 @@ used features.
 `core` includes modules corresponding to each of the integer types, each of
 the floating point types, the `bool` type, tuples, characters, strings,
 vectors (`vec`), shared boxes (`box`), and unsafe and borrowed pointers
-(`ptr`).  Additionally, `core` provides very commonly used built-in types
-and operations, concurrency primitives, platform abstractions, I/O, and
-complete bindings to the C standard library.
-
-`core` is linked to all crates and its contents imported.  Implicitly, all
-crates behave as if they included the following prologue:
+(`ptr`).  Additionally, `core` provides task management and creation (`task`),
+communication primitives (`comm` and `pipes`), an efficient vector builder
+(`dvec`), platform abstractions (`os` and `path`), basic I/O abstractions
+(`io`), common traits (`cmp`, `num`, `to_str`), and complete bindings
+to the C standard library (`libc`).
+
+`core` is linked to all crates by default and its contents imported.
+Implicitly, all crates behave as if they included the following prologue:
 
     extern mod core;
     use core::*;