about summary refs log tree commit diff
path: root/src/libstd/rt
diff options
context:
space:
mode:
authorJeff Olson <olson.jeffery@gmail.com>2013-07-19 16:24:07 -0700
committerJeff Olson <olson.jeffery@gmail.com>2013-07-22 13:19:05 -0700
commit73ab6c60f37263871a5e69f3eeaad72f0d804a02 (patch)
tree2f20dc72b73664395a3958b19263a74267e22718 /src/libstd/rt
parent155470fc9cd8e1cdfd0f6ecc558f865f54c1ef29 (diff)
downloadrust-73ab6c60f37263871a5e69f3eeaad72f0d804a02.tar.gz
rust-73ab6c60f37263871a5e69f3eeaad72f0d804a02.zip
std: make check appeasement
Diffstat (limited to 'src/libstd/rt')
-rw-r--r--src/libstd/rt/io/timer.rs13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/libstd/rt/io/timer.rs b/src/libstd/rt/io/timer.rs
index f80a91e988c..c7820ebf623 100644
--- a/src/libstd/rt/io/timer.rs
+++ b/src/libstd/rt/io/timer.rs
@@ -1,12 +1,13 @@
-// copyright 2013 the rust project developers. see the copyright
+// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
-// http://rust-lang.org/copyright.
+// http://rust-lang.org/COPYRIGHT.
 //
-// licensed under the apache license, version 2.0 <license-apache or
-// http://www.apache.org/licenses/license-2.0> or the mit license
-// <license-mit or http://opensource.org/licenses/mit>, at your
-// option. this file may not be copied, modified, or distributed
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
 // except according to those terms.
+
 use option::{Option, Some, None};
 use result::{Ok, Err};
 use rt::io::{io_error};