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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Keyword.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/Keyword.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Keyword.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/scanner/Keyword.java (working copy)
@@ -17,7 +17,7 @@
import java.util.Map;
/**
- * The enumeration <code>Keyword</code> defines the keywords in the Dart programming language.
+ * The enumeration {@code Keyword} defines the keywords in the Dart programming language.
*/
public enum Keyword {
BREAK("break"),
@@ -106,10 +106,10 @@
/**
* Initialize a newly created keyword to have the given syntax. The keyword is a pseudo-keyword if
- * the given flag is <code>true</code>.
+ * the given flag is {@code true}.
*
* @param syntax the lexeme for the keyword
- * @param isPseudoKeyword <code>true</code> if this keyword is a pseudo-keyword
+ * @param isPseudoKeyword {@code true} if this keyword is a pseudo-keyword
*/
Keyword(String syntax, boolean isPseudoKeyword) {
this.syntax = syntax;
@@ -126,10 +126,10 @@
}
/**
- * Return <code>true</code> if this keyword is a pseudo-keyword. Pseudo keywords can be used as
+ * Return {@code true} if this keyword is a pseudo-keyword. Pseudo keywords can be used as
* identifiers.
*
- * @return <code>true</code> if this keyword is a pseudo-keyword
+ * @return {@code true} if this keyword is a pseudo-keyword
*/
public boolean isPseudoKeyword() {
return isPseudoKeyword;

Powered by Google App Engine
This is Rietveld 408576698