This is an automated email from the ASF dual-hosted git repository. tison pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/curator-site.git
commit a6f9d082efd08142bb2ad97f339303e59d1422b2 Author: tison <[email protected]> AuthorDate: Tue Aug 15 16:23:56 2023 +0800 style: more align code blocks Signed-off-by: tison <[email protected]> --- docs/recipes-shared-reentrant-lock.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/recipes-shared-reentrant-lock.md b/docs/recipes-shared-reentrant-lock.md index 6322023..7917500 100644 --- a/docs/recipes-shared-reentrant-lock.md +++ b/docs/recipes-shared-reentrant-lock.md @@ -26,8 +26,8 @@ public InterProcessMutex(CuratorFramework client, String path); To acquire the lock, use one of the acquire methods: ```java -Acquire the mutex - blocking until it's available. Note: the same thread can call acquire -re-entrantly. Each call to acquire must be balanced by a call to release() +// Acquire the mutex - blocking until it's available. Note: the same thread can call acquire +// re-entrantly. Each call to acquire must be balanced by a call to release() public void acquire(); ```
