Skip to content

Commit 739d9d9

Browse files
author
Ikko Eltociear Ashimine
authored
docs: update README.md (#582)
synchrounous -> synchronous
1 parent e92f21e commit 739d9d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,17 +132,17 @@ const engine = await CreateMLCEngine(
132132
);
133133
```
134134

135-
Under the hood, this factory function does the following steps for first creating an engine instance (synchrounous) and then loading the model (asynchrounous). You can also do them separately in your application.
135+
Under the hood, this factory function does the following steps for first creating an engine instance (synchronous) and then loading the model (asynchronous). You can also do them separately in your application.
136136

137137
```typescript
138138
import { MLCEngine } from "@mlc-ai/web-llm";
139139

140-
// This is a synchrounous call that returns immediately
140+
// This is a synchronous call that returns immediately
141141
const engine = new MLCEngine({
142142
initProgressCallback: initProgressCallback
143143
});
144144

145-
// This is an asynchrounous call and can take a long time to finish
145+
// This is an asynchronous call and can take a long time to finish
146146
await engine.reload(selectedModel);
147147
```
148148

0 commit comments

Comments
 (0)