Skip to content

Commit 5fc02f5

Browse files
committed
spelling
1 parent 99e2138 commit 5fc02f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/packaging-guide/important-info.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ Many services have configuration files, such as a config.toml. With start-sdk, t
4141
When you access a File Model or Store value, you must choose between:
4242

4343
- `.once()`: returns the parsed file or Store value and nothing else.
44-
- `.const()`: returns the parsed file or Store value, and registers an OS tak to re-run the context function if the file or value changes. For example, a `.const()` used to get a "name" value from the Store in `setupInterfaces()` would result in `setupInterfaces()` re-running if the "name" value changes.
44+
- `.const()`: returns the parsed file or Store value, and registers an OS task to re-run the context function if the file or value changes. For example, a `.const()` used to get a "name" value from the Store in `setupInterfaces()` would result in `setupInterfaces()` re-running if the "name" value changes.
4545
- `.onChange()`: registers an OS tak to run a callback function that accepts the new file or value. For example, `.onChange((newFileOrValue) => { // do stuff })`
46-
- `watch()`: returns an async iterator of the new file or value. For example, `.watch()`
46+
- `watch()`: returns an async iterator of the new file or value. @TODO provide an example

0 commit comments

Comments
 (0)