Missing word fix
diff --git a/CodeReviewComments.md b/CodeReviewComments.md
index e02412e..38a3500 100644
--- a/CodeReviewComments.md
+++ b/CodeReviewComments.md
@@ -239,7 +239,7 @@
 
 ## Package Names
 
-All references to names in your package will be done using the package name, so you can omit that name from the identifiers. For example, if you are in package chubby, you don't need type ChubbyFile, which clients will write as chubby.ChubbyFile. Instead, name the type File, which clients will write as chubby.File. See https://golang.org/doc/effective_go.html#package-names for more.
+All references to names in your package will be done using the package name, so you can omit that name from the identifiers. For example, if you are in package chubby, you don't need to type ChubbyFile, which clients will write as chubby.ChubbyFile. Instead, name the type File, which clients will write as chubby.File. See https://golang.org/doc/effective_go.html#package-names for more.
 
 ## Pass Values