This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git
The following commit(s) were added to refs/heads/master by this push:
new 17d59f409 Add missing parenthesis
17d59f409 is described below
commit 17d59f409ba45b6d5ce9432cb494df657b10eda4
Author: Konrad Windszus <[email protected]>
AuthorDate: Mon Jun 2 14:54:22 2025 +0200
Add missing parenthesis
---
.../content/documentation/the-sling-engine/sling-api-crud-support.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/jbake/content/documentation/the-sling-engine/sling-api-crud-support.md
b/src/main/jbake/content/documentation/the-sling-engine/sling-api-crud-support.md
index a0e06d3f0..cbc08dcbb 100644
---
a/src/main/jbake/content/documentation/the-sling-engine/sling-api-crud-support.md
+++
b/src/main/jbake/content/documentation/the-sling-engine/sling-api-crud-support.md
@@ -21,7 +21,7 @@ As of version 2.3.0, the Sling API provides full Create Read
Update Delete (CRUD
Those methods provide the ability to create and delete resources as well. In
addition you can adapt a `Resource` to a `ModifiableValueMap` interface which
is similar to the `ValueMap` interface, but allows for updating properties on a
resource.
-Notably missing is renaming support
([SLING-11712](https://issues.apache.org/jira/browse/SLING-11712) which
currently requires a combination of create and move operations.
+Notably missing is renaming support
([SLING-11712](https://issues.apache.org/jira/browse/SLING-11712)) which
currently requires a combination of create and move operations.
# Examples