Add missing word in comment and delete empty line.

RELNOTES: None
PiperOrigin-RevId: 265149865
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/FileFunction.java b/src/main/java/com/google/devtools/build/lib/skyframe/FileFunction.java
index 6f02026..5cb1352 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/FileFunction.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/FileFunction.java
@@ -324,9 +324,8 @@
     //   (iii) Unbounded expansion caused by a symlink to an ancestor of a member of the chain:
     //     p -> a/b -> c/d -> a
     //
-    // We can detect all three of these symlink issues inspection of the proposed new element. Here
-    // is our incremental algorithm:
-    //
+    // We can detect all three of these symlink issues via inspection of the proposed new element.
+    // Here is our incremental algorithm:
     //   If 'path' is in 'sortedLogicalChain' then we have a found a cycle (i).
     //   If 'path' is a descendant of any path p in 'sortedLogicalChain' then we have unbounded
     //   expansion (ii).