Skip to content

Commit

Permalink
Review suggestions by @xzfc
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Jun 26, 2024
1 parent 7d41cc1 commit 61600ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/qdrant_client/collection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ impl Qdrant {

/// Update collection cluster setup.
///
/// Execute a collection cluster
/// Perform a collection cluster
/// [`Operation`](crate::qdrant::update_collection_cluster_setup_request::Operation), such as
/// [`MoveShard`](crate::qdrant::MoveShard), [`ReplicateShard`](crate::qdrant::ReplicateShard)
/// or [`CreateShardKey`](crate::qdrant::CreateShardKey).
Expand Down
6 changes: 3 additions & 3 deletions src/qdrant_client/points.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,9 @@ impl Qdrant {
.await
}

/// Batch point updates in a collection.
/// Batch point operations in a collection.
///
/// Execute a batch of point [updates](crate::qdrant::points_update_operation::Operation) in a single operation.
/// Perform a batch of point [`Operation`](crate::qdrant::points_update_operation::Operation)s in a single request.
///
/// ```no_run
///# use std::collections::HashMap;
Expand All @@ -283,7 +283,7 @@ impl Qdrant {
/// };
/// use serde_json::json;
///
///# async fn update_batch_points(client: &Qdrant)
///# async fn update_points_batch(client: &Qdrant)
///# -> Result<(), QdrantError> {
/// client
/// .update_points_batch(
Expand Down

0 comments on commit 61600ce

Please sign in to comment.