SLING-10299 : Allow for removal of access control policies (update documentation)
diff --git a/src/main/jbake/content/documentation/bundles/repository-initialization.md b/src/main/jbake/content/documentation/bundles/repository-initialization.md
index 50a5c1e..a122f6d 100644
--- a/src/main/jbake/content/documentation/bundles/repository-initialization.md
+++ b/src/main/jbake/content/documentation/bundles/repository-initialization.md
@@ -152,7 +152,26 @@
     set principal ACL for alice,bob
         allow jcr:namespaceManagement on :repository 
     end
-	
+
+    # Remove access control policy by path (see SLING-10299)
+    # since 
+    # o.a.s.repoinit.parser 1.6.10 and 
+    # o.a.s.jcr.repoinit 1.1.36
+    delete ACL on /content, :repository, home(alice)
+
+    # Remove access control policy by principal (see SLING-10299)
+    # Note, this will result in the removal of all path-based access control entries for the specified principal(s).
+    # since 
+    # o.a.s.repoinit.parser 1.6.10 and 
+    # o.a.s.jcr.repoinit 1.1.36
+    delete ACL for alice,bob
+
+    # Remove principal-based access control policy (see SLING-10299)
+    # since 
+    # o.a.s.repoinit.parser 1.6.10 and 
+    # o.a.s.jcr.repoinit 1.1.36
+    delete principal ACL for alice,bob
+
     # register namespace requires 
     # o.a.s.repoinit.parser 1.0.4
     # and o.a.s.jcr.repoinit 1.0.2