Skip to content

Commit

Permalink
Wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcferretti committed Feb 18, 2025
1 parent dd5cda3 commit 4d85d98
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions jetcd-core/src/main/java/io/etcd/jetcd/options/GetOption.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public boolean isCountOnly() {
*
* <p>
* 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.
* </p>
Expand All @@ -173,7 +173,7 @@ public long getMinCreateRevision() {
*
* <p>
* 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.
* </p>
Expand All @@ -190,7 +190,7 @@ public long getMaxCreateRevision() {
*
* <p>
* 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.
* </p>
Expand All @@ -207,7 +207,7 @@ public long getMinModRevision() {
*
* <p>
* 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.
* </p>
Expand Down Expand Up @@ -421,7 +421,7 @@ public Builder withPrefix(ByteSequence prefix) {
*
* <p>
* 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.
* </p>
Expand All @@ -441,7 +441,7 @@ public Builder withMinCreateRevision(long createRevision) {
*
* <p>
* 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.
* </p>
Expand All @@ -461,7 +461,7 @@ public Builder withMaxCreateRevision(long createRevision) {
*
* <p>
* 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.
* </p>
Expand All @@ -481,7 +481,7 @@ public Builder withMinModRevision(long modRevision) {
*
* <p>
* 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.
* </p>
Expand Down

0 comments on commit 4d85d98

Please sign in to comment.