Skip to content

Commit

Permalink
docs: Fixed typos (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewDawes committed Nov 17, 2022
1 parent b21b5e1 commit 968af4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function Head() {

## `@builder.io/partytown/services`

The `services` submodule provides some of the commonly used [forward events](/forwarding-events), such as Google Tag Manager or Facebook Pixel. Please see the [Common Services](/common-services) docs for more informaiton.
The `services` submodule provides some of the commonly used [forward events](/forwarding-events), such as Google Tag Manager or Facebook Pixel. Please see the [Common Services](/common-services) docs for more information.

## `@builder.io/partytown/utils`

Expand Down
2 changes: 1 addition & 1 deletion docs/how-does-partytown-work.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Please see the [Atomics communication layer docs](/atomics) on how to enable the
1. Web worker is given the scripts to execute within the worker thread.
1. Web worker creates JavaScript Proxies to replicate and forward calls to the main thread APIs (such as DOM operations).
1. Any call to the JS proxy will use [Atomics.store()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/store) and `postMessage()` to send the data to the main thread, and run [Atomics.wait()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait).
1. [Atomics.load()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/load) is used once the web worker recieves the results data from the main thread.
1. [Atomics.load()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/load) is used once the web worker receives the results data from the main thread.
1. From the point of view of code executing on the web worker, everything was synchronous, and each call to the document was blocking.

## Serialization
Expand Down

1 comment on commit 968af4c

@vercel
Copy link

@vercel vercel bot commented on 968af4c Nov 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.