From ed5ff5a482c9c6a0ea9e838525bd6d52c37692a6 Mon Sep 17 00:00:00 2001 From: lindt Date: Sat, 22 Jul 2023 11:18:58 +0200 Subject: [PATCH] [docs] typo fix (#352) Co-authored-by: Stefan Rohe --- docs/src/notebooks/code_qa_bot.ipynb | 2 +- rust/ffi/node/src/arrow.rs | 2 +- rust/ffi/node/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/notebooks/code_qa_bot.ipynb b/docs/src/notebooks/code_qa_bot.ipynb index 311a6857..2ea6ba10 100644 --- a/docs/src/notebooks/code_qa_bot.ipynb +++ b/docs/src/notebooks/code_qa_bot.ipynb @@ -181,7 +181,7 @@ "id": "c3852dd3", "metadata": {}, "source": [ - "# Generating emebeddings from our docs\n", + "# Generating embeddings from our docs\n", "\n", "Now that we have our raw documents loaded, we need to pre-process them to generate embeddings:" ] diff --git a/rust/ffi/node/src/arrow.rs b/rust/ffi/node/src/arrow.rs index c9c4ac81..494cc1b4 100644 --- a/rust/ffi/node/src/arrow.rs +++ b/rust/ffi/node/src/arrow.rs @@ -26,7 +26,7 @@ pub(crate) fn convert_record_batch(record_batch: RecordBatch) -> RecordBatch { .column_by_name("vector") .cloned() .expect("vector column is missing"); - // TODO: we should just consume the underlaying js buffer in the future instead of this arrow around a bunch of times + // TODO: we should just consume the underlying js buffer in the future instead of this arrow around a bunch of times let arr = as_list_array(column.as_ref()); let list_size = arr.values().len() / record_batch.num_rows(); let r = diff --git a/rust/ffi/node/src/lib.rs b/rust/ffi/node/src/lib.rs index a2b1b5fd..dbc3a02f 100644 --- a/rust/ffi/node/src/lib.rs +++ b/rust/ffi/node/src/lib.rs @@ -54,7 +54,7 @@ struct JsTable { impl Finalize for JsTable {} // TODO: object_store didn't export this type so I copied it. -// Make a requiest to object_store to export this type +// Make a request to object_store to export this type #[derive(Debug)] pub struct StaticCredentialProvider { credential: Arc,