about summary refs log tree commit diff
path: root/src/libsyntax/util
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-08 07:26:41 -0800
committerbors <bors@rust-lang.org>2014-01-08 07:26:41 -0800
commit464d1d044eebace50d17c10731493d6898490876 (patch)
tree886787e27d87335fc126fcfb4becedea1b0b5d4d /src/libsyntax/util
parentfda71f26301d153ca8d9489281d382af79792d63 (diff)
parent9dc44c7d861de4db93620589507e3ce935677392 (diff)
downloadrust-464d1d044eebace50d17c10731493d6898490876.tar.gz
rust-464d1d044eebace50d17c10731493d6898490876.zip
auto merge of #11405 : huonw/rust/moredocs, r=huonw
Various documentation changes, change the 'borrowed pointer' terminology to 'reference', fix a problem with 'make dist' on windows.
Diffstat (limited to 'src/libsyntax/util')
-rw-r--r--src/libsyntax/util/interner.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/util/interner.rs b/src/libsyntax/util/interner.rs
index b694e1f702b..fdc54f1f140 100644
--- a/src/libsyntax/util/interner.rs
+++ b/src/libsyntax/util/interner.rs
@@ -83,7 +83,7 @@ impl<T:Eq + IterBytes + Hash + Freeze + Clone + 'static> Interner<T> {
 }
 
 // A StrInterner differs from Interner<String> in that it accepts
-// borrowed pointers rather than @ ones, resulting in less allocation.
+// references rather than @ ones, resulting in less allocation.
 pub struct StrInterner {
     priv map: @RefCell<HashMap<@str, Name>>,
     priv vect: @RefCell<~[@str]>,