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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/CompilationUnit.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/ast/CompilationUnit.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/CompilationUnit.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/CompilationUnit.java (working copy)
@@ -18,7 +18,7 @@
import java.util.List;
/**
- * Instances of the class <code>CompilationUnit</code> represent a compilation unit.
+ * Instances of the class {@code CompilationUnit} represent a compilation unit.
*
* <pre>
* compilationUnit ::=
@@ -39,8 +39,8 @@
*/
public class CompilationUnit extends ASTNode {
/**
- * The script tag at the beginning of the compilation unit, or <code>null</code> if there is no
- * script tag in this compilation unit.
+ * The script tag at the beginning of the compilation unit, or {@code null} if there is no script
+ * tag in this compilation unit.
*/
private ScriptTag scriptTag;
@@ -116,8 +116,8 @@
}
/**
- * Return the script tag at the beginning of the compilation unit, or <code>null</code> if there
- * is no script tag in this compilation unit.
+ * Return the script tag at the beginning of the compilation unit, or {@code null} if there is no
+ * script tag in this compilation unit.
*
* @return the script tag at the beginning of the compilation unit
*/

Powered by Google App Engine
This is Rietveld 408576698