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

Unified Diff: lib/core/int.dart

Issue 11275002: Fix typo (rewriting comment). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update comment Created 8 years, 2 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: lib/core/int.dart
diff --git a/lib/core/int.dart b/lib/core/int.dart
index 9e3d5ec440f3816b7e01e7bafe9e24e1b3ef8208..b0f6c137e32451340e212d70d9ddbb43c740720c 100644
--- a/lib/core/int.dart
+++ b/lib/core/int.dart
@@ -47,16 +47,16 @@ abstract class int extends num {
/** Returns the absolute value of this integer. */
int abs();
- /** For integers the round method is the identify function. */
+ /** Returns [this]. */
int round();
- /** For integers the floor method is the identify function. */
+ /** Returns [this]. */
int floor();
- /** For integers the ceil method is the identify function. */
+ /** Returns [this]. */
int ceil();
- /** For integers the truncate method is the identify function. */
+ /** Returns [this]. */
int truncate();
/**
« 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