Fix typo.

PiperOrigin-RevId: 452771842
Change-Id: If6aff4353c4b2eef69930e178f7ad9ab66c504b4
diff --git a/src/main/java/com/google/devtools/build/lib/packages/Globber.java b/src/main/java/com/google/devtools/build/lib/packages/Globber.java
index 4bc2184..fd6007a 100644
--- a/src/main/java/com/google/devtools/build/lib/packages/Globber.java
+++ b/src/main/java/com/google/devtools/build/lib/packages/Globber.java
@@ -21,16 +21,13 @@
   /** An opaque token for fetching the result of a glob computation. */
   abstract class Token {}
 
-  /**
-   * Indiciates they type of globbing operations we're doing, whether looking for Files+Dirs or
-   * sub-packages.
-   */
+  /** Indicates the type of globbing operations we are doing. */
   enum Operation {
-    // Return only files,
+    // Return only files.
     FILES,
-    // Return files and directories, but not sub-packages
+    // Return files and directories, but not sub-packages.
     FILES_AND_DIRS,
-    // Return only sub-packages
+    // Return only sub-packages.
     SUBPACKAGES,
   }