Skip to content

Commit

Permalink
Chore: Fixes #10418: Fix plugin spec page crashes documentation (#10419)
Browse files Browse the repository at this point in the history
  • Loading branch information
personalizedrefrigerator committed May 12, 2024
1 parent 09d088b commit d49b2ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions readme/dev/spec/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ flowchart
postMessage(["postMessage({ kind: InvokeMethod, ... })"])
rm1--2-->postMessage--3-->rm2
subgraph MainProcess
call(["await m1.remoteApi.setCss('...')"])
call--1-->rm1
callMethod(["await m1.remoteApi.setCss('...')"])
callMethod--1-->rm1
rm1["m1 = RemoteMessenger< MainProcessApi,WebViewApi >"]
end
subgraph WebView
Expand All @@ -247,8 +247,8 @@ flowchart
end
subgraph MainProcess
rm1["m1 = RemoteMessenger< MainProcessApi,WebViewApi >"]
call(["await m1.remoteApi.setCss('...')"])
rm1--8-->call
callMethod(["await m1.remoteApi.setCss('...')"])
rm1--8-->callMethod
end
```

Expand Down

0 comments on commit d49b2ec

Please sign in to comment.