Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: sdk/lib/core/date_time.dart

Issue 2270043002: Fix DateTime.timeZoneName comment. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/date_time.dart
diff --git a/sdk/lib/core/date_time.dart b/sdk/lib/core/date_time.dart
index b5e9c3ce26f6376904a5e306531759be0f235f49..b792ac272e6a8bfb97fdf7acfff3ddb031fe9879 100644
--- a/sdk/lib/core/date_time.dart
+++ b/sdk/lib/core/date_time.dart
@@ -664,10 +664,14 @@ class DateTime implements Comparable<DateTime> {
external int get microsecondsSinceEpoch;
/**
- * The time zone name provided by the platform.
+ * The time zone name.
*
- * On Unix-like systems this will probably be an abbreviation. On Windows
- * this will probably be the full-name, e.g. "Pacific Standard Time".
+ * This value is provided by the operating system and may be an
+ * abbreviation or a full name.
+ *
+ * In the browser or on Unix-like systems commonly returns abbreviations,
+ * such as "CET" or "CEST". On Windows returns the full name, for example
+ * "Pacific Standard Time".
*/
external String get timeZoneName;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698