Skip to content

Commit 22e7cd3

Browse files
committed
Trivial formatting update
Mostly doing this to trigger another deployment of the docs site, which is currently down.
1 parent 913b98d commit 22e7cd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-concepts/multithreading-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Workers API in NativeScript is loosely based on the [Dedicated Web Workers API](
2323
### Worker Object prototype
2424
- `new Worker(path)` - creates an instance of a Worker and spawns a new OS thread, where the script pointed to by the `path` parameter is executed.
2525
- `postMessage(message)` - sends a JSON-serializable message to the associated script's `onmessage` event handler.
26-
- `terminate()` - terminates the execution of the worker thread on the next run loop tick
26+
- `terminate()` - terminates the execution of the worker thread on the next run loop tick.
2727

2828
**Worker** Object event handlers
2929
- `onmessage(message)` - handle incoming messages sent from the associated worker thread. The message object has the following properties:

0 commit comments

Comments
 (0)