From 4d85d9875a3cc9ffba4cd1c7a06dc02aa41f224a Mon Sep 17 00:00:00 2001 From: Cristian Ferretti Date: Mon, 17 Feb 2025 23:42:24 -0500 Subject: [PATCH] Wording. --- .../java/io/etcd/jetcd/options/GetOption.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/jetcd-core/src/main/java/io/etcd/jetcd/options/GetOption.java b/jetcd-core/src/main/java/io/etcd/jetcd/options/GetOption.java index 68ed083e..44362863 100644 --- a/jetcd-core/src/main/java/io/etcd/jetcd/options/GetOption.java +++ b/jetcd-core/src/main/java/io/etcd/jetcd/options/GetOption.java @@ -156,7 +156,7 @@ public boolean isCountOnly() { * *

* Note this filter does not affect the count field in GetResponse. - * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of other filters. + * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of revision filters. * For the same reason, it would be meaningless to mix setting a min create revision option * with the count only option. *

@@ -173,7 +173,7 @@ public long getMinCreateRevision() { * *

* Note this filter does not affect the count field in GetResponse. - * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of other filters. + * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of revision filters. * For the same reason, it would be meaningless to mix setting a max create revision option * with the count only option. *

@@ -190,7 +190,7 @@ public long getMaxCreateRevision() { * *

* Note this filter does not affect the count field in GetResponse. - * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of other filters. + * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of revision filters. * For the same reason, it would be meaningless to mix setting a min mod revision option * with the count only option. *

@@ -207,7 +207,7 @@ public long getMinModRevision() { * *

* Note this filter does not affect the count field in GetResponse. - * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of other filters. + * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of revision filters. * For the same reason, it would be meaningless to mix setting a max mod revision option * with the count only option. *

@@ -421,7 +421,7 @@ public Builder withPrefix(ByteSequence prefix) { * *

* Note this filter does not affect the count field in GetResponse. - * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of other filters. + * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of revision filters. * For the same reason, it would be meaningless to mix setting this option * with the count only option. *

@@ -441,7 +441,7 @@ public Builder withMinCreateRevision(long createRevision) { * *

* Note this filter does not affect the count field in GetResponse. - * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of other filters. + * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of revision filters. * For the same reason, it would be meaningless to mix setting this option * with the count only option. *

@@ -461,7 +461,7 @@ public Builder withMaxCreateRevision(long createRevision) { * *

* Note this filter does not affect the count field in GetResponse. - * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of other filters. + * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of revision filters. * For the same reason, it would be meaningless to mix setting this option * with the count only option. *

@@ -481,7 +481,7 @@ public Builder withMinModRevision(long modRevision) { * *

* Note this filter does not affect the count field in GetResponse. - * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of other filters. + * {@link GetResponse#getCount()} always counts the number of keys matched on a range, independent of revision filters. * For the same reason, it would be meaningless to mix setting this option * with the count only option. *