Skip to content

Commit d0551fd

Browse files
devvaannshabose
authored andcommitted
fix: broken links, these links leads to invalid paths
1 parent 8044ee8 commit d0551fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/worker/IndexingWorker.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* worker cache to free up the main thread of heavy file access.
2727
*
2828
* * Extensions performing large compute tasks should create their own worker and may use easy util methods in
29-
* [worker/WorkerComm](../WorkerComm) to communicate with the web worker.
29+
* [worker/WorkerComm](./WorkerComm) to communicate with the web worker.
3030
*
3131
* ## Extending the indexing worker
3232
* You can add your own custom scripts to the indexing worker by following the below example. Suppose you have an
@@ -47,7 +47,7 @@
4747
* Once the worker script is loaded with the above step:
4848
* * Phoenix can communicate with worker using the `IndexingWorker` reference in Phoenix.
4949
* * Worker can communicate with Phoenix with the global `WorkerComm` reference within the Indexing worker.
50-
* All utility methods in module [worker/WorkerComm](../WorkerComm) can be used for worker communication.
50+
* All utility methods in module [worker/WorkerComm](./WorkerComm) can be used for worker communication.
5151
*
5252
* A global constant `Phoenix.baseURL` is available in the worker context to get the base url from which phoenix was
5353
* launched.
@@ -81,7 +81,7 @@ define(function (require, exports, module) {
8181
* The above methods can be used with either `IndexingWorker` reference within Phoenix
8282
* or the global `WorkerComm` reference within the Indexing worker. (See example below.)
8383
*
84-
* See [worker/WorkerComm](../WorkerComm) for detailed API docs.
84+
* See [worker/WorkerComm](./WorkerComm) for detailed API docs.
8585
*
8686
* ```js
8787
* // To Execute a named function `extensionName.sayHello` in the worker from phoenix

0 commit comments

Comments
 (0)