]> git.lizzy.rs Git - rust.git/blobdiff - src/rt/rust_log.cpp
auto merge of #8551 : huonw/rust/speling, r=alexcrichton
[rust.git] / src / rt / rust_log.cpp
index 7653635acd9befb5b4a56db54aafcfbb8fe58859..97c1135fe01d2aa732f134596ff2af4232a9ee59 100644 (file)
@@ -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) {