diff --git a/javascriptguide.xml b/javascriptguide.xml
index 957a05b36..c6696bc04 100644
--- a/javascriptguide.xml
+++ b/javascriptguide.xml
@@ -2,10 +2,10 @@
-
+
Revision 2.93
JavaScript is the main client-side scripting language used
-
+
by many of Google's open-source
projects.
This style guide is a list of dos and don'ts for
JavaScript programs.
Bob Jervis
@@ -35,23 +35,23 @@
The whitespace at the beginning of each line can't be safely stripped at compile time; whitespace after the slash will result in tricky - errors; and while most script engines support this, it is not part - of ECMAScript.
+ errors.Use string concatenation instead:
Optional and variable arguments can also be specified in
@param
annotations. Although either convention is
acceptable to the compiler, using both together is preferred.
Many JavaScript libraries, including
the Closure Library
@@ -826,7 +825,7 @@
parent namespace know what you are doing. If you start a project
that creates hats for sloths, make sure that the Sloth team knows
that you're using sloth.hats
.
"External code" is code that comes from outside your codebase, @@ -867,8 +866,8 @@ goog.exportSymbol('foo.hats.BowlerHat', googleyhats.BowlerHat); - - + +
Use local aliases for fully-qualified types if doing so improves
@@ -937,7 +936,7 @@
and should contain no punctuation except for -
or
_
(prefer -
to _
).