You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ti...@apache.org on 2023/08/15 08:32:54 UTC

[curator-site] 03/05: style: more align code blocks

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 <wa...@gmail.com>
AuthorDate: Tue Aug 15 16:23:56 2023 +0800

    style: more align code blocks
    
    Signed-off-by: tison <wa...@gmail.com>
---
 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();
 ```