Skip to content

Commit

Permalink
Merge pull request #735 from xiaoxianBoy/fixdevelop
Browse files Browse the repository at this point in the history
Fix a typo in the "Browser Usage" section in the README
  • Loading branch information
cameel committed Apr 19, 2024
2 parents 95b79a6 + b15b25a commit 14cff58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -319,7 +319,7 @@ var output = translate.prettyPrintLegacyAssemblyJSON(assemblyJSON, sourceCode)
## Browser Usage

Compilation is generally a long-running and resource intensive task that cannot reasonably be performed in the main thread of the browser.
Some browsers even dissallow synchronous compilation on the main thread if the module is larger than 4KB.
Some browsers even disallow synchronous compilation on the main thread if the module is larger than 4KB.
Thus, the only supported way to use `solc` in a web browser is through a [web worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers).

### Loading solc with web workers
Expand Down

0 comments on commit 14cff58

Please sign in to comment.