diff --git a/xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml b/xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml
index 3bf3d66c82f..948d317348c 100644
--- a/xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml
+++ b/xml/Microsoft.Build.Globbing/MSBuildGlobWithGaps.xml
@@ -19,17 +19,20 @@
   
   
     
-                A glob with gaps. The gaps are represented as other globs.
-                For example, to express a glob that matches all .cs files except the ones containing "foo" and the ones under bin directories, one can use:
-                
-            new MSBuildGlobWithGaps(
-               MSBuildGlob.Parse("**/*.cs"),            // matches all .cs files
-               new CompositeGlob(                       // a composite glob to combine all the gaps
-                  MSBuildGlob.Parse("**/*foo*.cs"),     // matches .cs files containing "foo"
-                  MSBuildGlob.Parse("**/bin/**/*.cs")   // matches .cs files under bin directories
-               )
-            )
-                
+    A glob with gaps. The gaps are represented as other globs.
+    
+    
+    To express a glob that matches all .cs files except the ones containing "foo" and the ones under bin directories, use:
+    
+    new MSBuildGlobWithGaps(
+        MSBuildGlob.Parse("**/*.cs"),            // matches all .cs files
+        new CompositeGlob(                       // a composite glob to combine all the gaps
+            MSBuildGlob.Parse("**/*foo*.cs"),     // matches .cs files containing "foo"
+            MSBuildGlob.Parse("**/bin/**/*.cs")   // matches .cs files under bin directories
+        )
+    )
+    
+    
     To be added.