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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Token.java

Issue 10700082: Comment clean-up (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Token.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Token.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Token.java (working copy)
@@ -14,7 +14,7 @@
package com.google.dart.engine.scanner;
/**
- * Instances of the class <code>Token</code> represent a token that was scanned from the input. Each
+ * Instances of the class {@code Token} represent a token that was scanned from the input. Each
* token knows which token follows it, acting as the head of a linked list of tokens.
*/
public class Token {
@@ -101,9 +101,9 @@
}
/**
- * Return <code>true</code> if this token represents an operator that can be defined by users.
+ * Return {@code true} if this token represents an operator that can be defined by users.
*
- * @return <code>true</code> if this token represents an operator that can be defined by users
+ * @return {@code true} if this token represents an operator that can be defined by users
*/
public boolean isUserDefinableOperator() {
return type.isUserDefinableOperator();

Powered by Google App Engine
This is Rietveld 408576698