about summary refs log tree commit diff
path: root/src/rt/rust_log.cpp
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2013-08-16 15:54:14 +1000
committerHuon Wilson <dbau.pp+github@gmail.com>2013-08-16 15:54:14 +1000
commit72fd02d93985bc9be359d736eec0484cb51a8b3f (patch)
tree97320928c95c49aefbf757500be8b4432b7f80c8 /src/rt/rust_log.cpp
parentabe94f9b4d0d072e2477b989715c6c79e97de259 (diff)
downloadrust-72fd02d93985bc9be359d736eec0484cb51a8b3f.tar.gz
rust-72fd02d93985bc9be359d736eec0484cb51a8b3f.zip
doc: convert remaining uses of core:: to std::.
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 25b246c69f5..127a1b57a21 100644
--- a/src/rt/rust_log.cpp
+++ b/src/rt/rust_log.cpp
@@ -31,7 +31,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) {