about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-04-18 06:15:54 -0700
committerbors <bors@rust-lang.org>2013-04-18 06:15:54 -0700
commit2c8278746de3df60ef9c3002f69c9511327a10f2 (patch)
tree9012c55da7bb39cf17f4ad7b33ae1ae12f420fe9 /src/libstd
parent938ddeeed672078a63f620d1408370539d49b2bf (diff)
parenta35376e24ec28d79f4e29ec34061ba23353c3d57 (diff)
downloadrust-2c8278746de3df60ef9c3002f69c9511327a10f2.tar.gz
rust-2c8278746de3df60ef9c3002f69c9511327a10f2.zip
auto merge of #5930 : osaut/rust/master, r=thestinger
Just small typos I found during my study of rust sources. 
I have added the fbuild URL for reader's convenience.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/workcache.rs13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/libstd/workcache.rs b/src/libstd/workcache.rs
index c4b450810aa..d1aa069559e 100644
--- a/src/libstd/workcache.rs
+++ b/src/libstd/workcache.rs
@@ -1,4 +1,4 @@
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
@@ -30,11 +30,12 @@ use core::to_bytes;
 
 /**
 *
-* This is a loose clone of the fbuild build system, made a touch more
-* generic (not wired to special cases on files) and much less metaprogram-y
-* due to rust's comparative weakness there, relative to python.
+* This is a loose clone of the [fbuild build system](https://github.com/felix-lang/fbuild),
+* made a touch more generic (not wired to special cases on files) and much
+* less metaprogram-y due to rust's comparative weakness there, relative to
+* python.
 *
-* It's based around _imperative bulids_ that happen to have some function
+* It's based around _imperative builds_ that happen to have some function
 * calls cached. That is, it's _just_ a mechanism for describing cached
 * functions. This makes it much simpler and smaller than a "build system"
 * that produces an IR and evaluates it. The evaluation order is normal
@@ -54,7 +55,7 @@ use core::to_bytes;
 * Works are conceptually single units, but we store them most of the time
 * in maps of the form (type,name) => value. These are WorkMaps.
 *
-* A cached function divides the works it's interested up into inputs and
+* A cached function divides the works it's interested in into inputs and
 * outputs, and subdivides those into declared (input) works and
 * discovered (input and output) works.
 *