Skip to content

Commit

Permalink
Fix more typos (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
JojiiOfficial authored Dec 18, 2024
1 parent d517f72 commit 509c5e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
//!# -> Result<(), QdrantError> {
//! let search_request = SearchPointsBuilder::new(
//! "my_collection", // Collection name
//! vec![0.0_f32; 512], // Cearch vector
//! vec![0.0_f32; 512], // Search vector
//! 4, // Search limit, number of results to return
//! ).with_payload(true);
//!
Expand All @@ -108,7 +108,7 @@
//!# }
//! ```
//!
//! The parameter for [`SearchPointsBuilder::new()`](qdrant::SearchPointsBuilder::new) contsructor
//! The parameter for [`SearchPointsBuilder::new()`](qdrant::SearchPointsBuilder::new) constructor
//! are pretty straightforward: name of the collection, the vector and how many top-k results to
//! return. The [`with_payload(true)`](qdrant::SearchPointsBuilder::with_payload) call tells qdrant
//! to also return the (full) payload data for each point. You can also add a
Expand Down

0 comments on commit 509c5e8

Please sign in to comment.