Skip to content

Commit 570b4d0

Browse files
committed
Merge pull request #41 from devigned/patch-2
Fix improper @param name
2 parents 3f1fad7 + 182407a commit 570b4d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/microsoft/azure/documentdb/HashPartitionResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public String resolveForCreate(Object document) {
130130
/**
131131
* Resolves the collection for reading/querying the documents based on the partition key.
132132
*
133-
* @param document the document to be read/queried.
133+
* @param partitionKey the partition Key to be read/queried.
134134
*
135135
* @return collection Self link(s) or Name based link(s) which should handle the Read operation
136136
*/
@@ -154,4 +154,4 @@ public Iterable<String> resolveForRead(Object partitionKey) {
154154
private List<Map.Entry<String,Long>> getSerializedPartitionList() {
155155
return this.consistentHashRing.getSerializedPartitionList();
156156
}
157-
}
157+
}

0 commit comments

Comments
 (0)