Skip to content

Commit 90fa17e

Browse files
committed
Docs: Spelling
1 parent a3f1bdd commit 90fa17e

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@
151151
"FAISS",
152152
"fbin",
153153
"furo",
154+
"geospatial",
154155
"googleanalytics",
155156
"groundtruth",
156157
"hashable",
@@ -170,6 +171,7 @@
170171
"longlong",
171172
"memmap",
172173
"MSVC",
174+
"Multimodal",
173175
"Napi",
174176
"ndarray",
175177
"NDCG",
@@ -208,7 +210,10 @@
208210
"usecases",
209211
"Vardanian",
210212
"vectorize",
211-
"Xunit"
213+
"Vincenty",
214+
"Wasmer",
215+
"Xunit",
216+
"Yuga"
212217
],
213218
"autoDocstring.docstringFormat": "sphinx",
214219
"java.configuration.updateBuildConfiguration": "interactive",

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,10 @@ nvm install 20
226226
Testing:
227227

228228
```sh
229-
npm install -g typescript
230-
npm install
231-
npm run build-js
232-
npm test
229+
npm install -g typescript # Install TypeScript globally
230+
npm install # Compile `javascript/lib.cpp`
231+
npm run build-js # Generate JS from TS
232+
npm test # Run the test suite
233233
```
234234

235235
To compile for AWS Lambda you'd need to recompile the binding.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ This can result in __20x cost reduction__ on AWS and other public clouds.
161161
index.save("index.usearch")
162162

163163
loaded_copy = index.load("index.usearch")
164-
view = Index.restore("index.usearch", view=True)
164+
view = Index.restore("index.usearch", view=True, ...)
165165

166166
other_view = Index(ndim=..., metric=...)
167167
other_view.view("index.usearch")

0 commit comments

Comments
 (0)