about summary refs log tree commit diff
path: root/src/rt/rust_log.cpp
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-08-18 05:11:58 -0700
committerbors <bors@rust-lang.org>2013-08-18 05:11:58 -0700
commit3bc685842802edfcd2918f911268f8e345cf3c26 (patch)
tree7ef40025a4a23dfcd30b30ba648f360fa6fa6d04 /src/rt/rust_log.cpp
parent600901152c223faad80d7cb419cecccd71803723 (diff)
parent6440343a6c26fca12ef2e323fa7738dce9da1986 (diff)
downloadrust-3bc685842802edfcd2918f911268f8e345cf3c26.tar.gz
rust-3bc685842802edfcd2918f911268f8e345cf3c26.zip
auto merge of #8551 : huonw/rust/speling, r=alexcrichton
(This doesn't add/remove `u`s or change `ize` to `ise`, or anything like that.)
Diffstat (limited to 'src/rt/rust_log.cpp')
-rw-r--r--src/rt/rust_log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_log.cpp b/src/rt/rust_log.cpp
index 7653635acd9..97c1135fe01 100644
--- a/src/rt/rust_log.cpp
+++ b/src/rt/rust_log.cpp
@@ -36,7 +36,7 @@ const size_t default_log_level = log_err;
 
 // This is a rather ugly parser for strings in the form
 // "crate1,crate2.mod3,crate3.x=1". Log levels are 0-255,
-// with the most likely ones being 0-3 (defined in core::).
+// with the most likely ones being 0-3 (defined in std::).
 size_t parse_logging_spec(char* spec, log_directive* dirs) {
     size_t dir = 0;
     while (dir < max_log_directives && *spec) {