docs: fix syntax
diff --git a/coreConceptsCacheElExpressions.md b/coreConceptsCacheElExpressions.md
index 4a49273..6dc0528 100644
--- a/coreConceptsCacheElExpressions.md
+++ b/coreConceptsCacheElExpressions.md
@@ -41,8 +41,8 @@
 c.xhtml
 ```xml
 <ui:composition>
-   <h:outputText value="#{var1}/>
-   <h:outputText value="#{var2}/>
+   <h:outputText value="#{var1}"/>
+   <h:outputText value="#{var2}"/>
 </ui:composition>
 ```
 If a.xhtml view is constructed before b.xhtml, #{var2} will be cached, even if this is not wanted and then when b.xhtml is called, the expression will not work correctly.
diff --git a/coreConceptsWhitespaceCompression.md b/coreConceptsWhitespaceCompression.md
index 8008f55..347f9e1 100644
--- a/coreConceptsWhitespaceCompression.md
+++ b/coreConceptsWhitespaceCompression.md
@@ -12,12 +12,13 @@
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
               version="2.2">
-<faces-config-extension>
-    <facelets-processing>
-        <file-extension>.xhtml</file-extension>
-        <process-as>xhtml</process-as>
-        <oam-compress-spaces>true</oam-compress-spaces>
-    </facelets-processing>
+    <faces-config-extension>
+        <facelets-processing>
+            <file-extension>.xhtml</file-extension>
+            <process-as>xhtml</process-as>
+            <oam-compress-spaces>true</oam-compress-spaces>
+        </facelets-processing>
+    </faces-config-extension>
 </faces-config>
 ```