about summary refs log tree commit diff
path: root/src/libtime
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-22 07:16:17 +0000
committerbors <bors@rust-lang.org>2014-07-22 07:16:17 +0000
commit8d43e4474aba98d99e2778dcdcd5b0515b7b8176 (patch)
tree6fb6f271ba16b79fdd6b1edd30bed9a88664f10b /src/libtime
parent32f4d996ea2bea69fe363dca4e6e09b91bbd83f3 (diff)
parent95a1ce6f3f3a31d4e64b04637cd252cc02b623dd (diff)
downloadrust-8d43e4474aba98d99e2778dcdcd5b0515b7b8176.tar.gz
rust-8d43e4474aba98d99e2778dcdcd5b0515b7b8176.zip
auto merge of #15867 : cmr/rust/rewrite-lexer4, r=alexcrichton
Diffstat (limited to 'src/libtime')
-rw-r--r--src/libtime/lib.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libtime/lib.rs b/src/libtime/lib.rs
index 41ba448754d..53e6bdc5641 100644
--- a/src/libtime/lib.rs
+++ b/src/libtime/lib.rs
@@ -205,28 +205,28 @@ pub fn tzset() {
 /// also called a broken-down time value.
 #[deriving(Clone, PartialEq, Show)]
 pub struct Tm {
-    /// Seconds after the minute – [0, 60]
+    /// Seconds after the minute - [0, 60]
     pub tm_sec: i32,
 
-    /// Minutes after the hour – [0, 59]
+    /// Minutes after the hour - [0, 59]
     pub tm_min: i32,
 
-    /// Hours after midnight – [0, 23]
+    /// Hours after midnight - [0, 23]
     pub tm_hour: i32,
 
-    /// Day of the month – [1, 31]
+    /// Day of the month - [1, 31]
     pub tm_mday: i32,
 
-    /// Months since January – [0, 11]
+    /// Months since January - [0, 11]
     pub tm_mon: i32,
 
     /// Years since 1900
     pub tm_year: i32,
 
-    /// Days since Sunday – [0, 6]. 0 = Sunday, 1 = Monday, …, 6 = Saturday.
+    /// Days since Sunday - [0, 6]. 0 = Sunday, 1 = Monday, ..., 6 = Saturday.
     pub tm_wday: i32,
 
-    /// Days since January 1 – [0, 365]
+    /// Days since January 1 - [0, 365]
     pub tm_yday: i32,
 
     /// Daylight Saving Time flag.
@@ -240,7 +240,7 @@ pub struct Tm {
     /// for U.S. Pacific Daylight Time, the value is -7*60*60 = -25200.
     pub tm_gmtoff: i32,
 
-    /// Nanoseconds after the second – [0, 10<sup>9</sup> - 1]
+    /// Nanoseconds after the second - [0, 10<sup>9</sup> - 1]
     pub tm_nsec: i32,
 }