Updated CodeReviewComments (markdown)
diff --git a/CodeReviewComments.md b/CodeReviewComments.md
index 4f080f4..64c8fca 100644
--- a/CodeReviewComments.md
+++ b/CodeReviewComments.md
@@ -333,7 +333,7 @@
## Initialisms
-Words in names that are initialisms or acronyms (e.g. "URL" or "NATO") have a consistent case. For example, "URL" should appear as "URL" or "url" (as in "urlPony", or "URLPony"), never as "Url". Here's an example: ServeHTTP not ServeHttp.
+Words in names that are initialisms or acronyms (e.g. "URL" or "NATO") have a consistent case. For example, "URL" should appear as "URL" or "url" (as in "urlPony", or "URLPony"), never as "Url". As an example: ServeHTTP not ServeHttp. For identifiers with multiple initialized "words", use for example "xmlHTTPRequest" or "XMLHTTPRequest".
This rule also applies to "ID" when it is short for "identifier," so write "appID" instead of "appId".
@@ -419,6 +419,8 @@
See https://golang.org/doc/effective_go.html#mixed-caps. This applies even when it breaks conventions in other languages. For example an unexported constant is `maxLength` not `MaxLength` or `MAX_LENGTH`.
+Also see [Initialisms](https://github.com/golang/go/wiki/CodeReviewComments#initialisms).
+
## Named Result Parameters
Consider what it will look like in godoc. Named result parameters like: