Updated CodeReviewComments (markdown)
diff --git a/CodeReviewComments.md b/CodeReviewComments.md
index 10a9d3c..7b60dce 100644
--- a/CodeReviewComments.md
+++ b/CodeReviewComments.md
@@ -53,7 +53,7 @@
 
 ## Declaring Empty Slices
 
-For a slice of strings, for example, prefer
+When declaring a slice, prefer
 ```go
 var t []string
 ```
@@ -62,7 +62,7 @@
 t := []string{}
 ```
 
-The former avoids allocating memory if the string is never appended to.
+The former avoids allocating memory if the slice is never appended to.
 
 ## Doc Comments