Skip to content

Commit 1dd271e

Browse files
devvaannshabose
authored andcommitted
fix: broken links in previously generated API docs
1 parent d0551fd commit 1dd271e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/API-Reference/worker/IndexingWorker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ indexing worker as discussed below. Any extension that works on a large number o
1212
worker cache to free up the main thread of heavy file access.
1313

1414
* Extensions performing large compute tasks should create their own worker and may use easy util methods in
15-
[worker/WorkerComm](../WorkerComm) to communicate with the web worker.
15+
[worker/WorkerComm](./WorkerComm) to communicate with the web worker.
1616

1717
## Import
1818

@@ -40,7 +40,7 @@ IndexingWorker.loadScriptInWorker(workerPath);
4040
Once the worker script is loaded with the above step:
4141
* Phoenix can communicate with worker using the `IndexingWorker` reference in Phoenix.
4242
* Worker can communicate with Phoenix with the global `WorkerComm` reference within the Indexing worker.
43-
All utility methods in module [worker/WorkerComm](../WorkerComm) can be used for worker communication.
43+
All utility methods in module [worker/WorkerComm](./WorkerComm) can be used for worker communication.
4444

4545
A global constant `Phoenix.baseURL` is available in the worker context to get the base url from which phoenix was
4646
launched.
@@ -63,7 +63,7 @@ in module `worker/WorkerComm`.
6363
The above methods can be used with either `IndexingWorker` reference within Phoenix
6464
or the global `WorkerComm` reference within the Indexing worker. (See example below.)
6565

66-
See [worker/WorkerComm](../WorkerComm) for detailed API docs.
66+
See [worker/WorkerComm](./WorkerComm) for detailed API docs.
6767

6868
```js
6969
// To Execute a named function `extensionName.sayHello` in the worker from phoenix

0 commit comments

Comments
 (0)