diff --git a/spring-integration-zookeeper/src/main/java/org/springframework/integration/zookeeper/lock/ZookeeperLockRegistry.java b/spring-integration-zookeeper/src/main/java/org/springframework/integration/zookeeper/lock/ZookeeperLockRegistry.java index 7a6ca00000..7b96d98f18 100644 --- a/spring-integration-zookeeper/src/main/java/org/springframework/integration/zookeeper/lock/ZookeeperLockRegistry.java +++ b/spring-integration-zookeeper/src/main/java/org/springframework/integration/zookeeper/lock/ZookeeperLockRegistry.java @@ -63,7 +63,7 @@ public class ZookeeperLockRegistry implements ExpirableLockRegistry { * Construct a lock registry using the default {@link KeyToPathStrategy} which * simple appends the key to {@code '/'}. * @param client the {@link CuratorFramework}. - * @param path the path root (no trailing /). + * @param root the path root (no trailing /). */ public ZookeeperLockRegistry(CuratorFramework client, String root) { this(client, new DefaultKeyToPathStrategy(root));