Skip to content

Commit 4b3cde6

Browse files
austingreendevKevinGrandon
authored andcommitted
Correct assorted typos (#19)
1 parent d266709 commit 4b3cde6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Install the dependencies:
88

99
Bootstrap:
1010

11-
`yarn boostrap`
11+
`yarn bootstrap`
1212

1313
It clones all the documentation.
1414

Diff for: content/tokens.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Tokens allow Fusion.js developers to avoid collisions by using a reference to th
2828

2929
**Use case:**
3030

31-
* You have a Fusion.js application with with many dependencies.
31+
* You have a Fusion.js application with many dependencies.
3232
* One type of dependency is a function that takes a string and returns a string.
3333
* There are are ten plugins in your application that conform to that type.
3434

Diff for: documentation/docs/getting-started/why-fusion.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ One of Fusion's goals was to have a more maintainable and easily-upgradeable arc
3131
Fusion was created with development and performance in mind, and was built with a focus on a lightweight, flexible system:
3232

3333
* Initial DOMContentLoaded is fast. Asset URLs, translations, and experiments are not sent down in the application state in the page body; they are split per page-bundle, resulting in minimal HTML page size
34-
* Our vendor JavaScript bundle small through usage of our modern build system, and we still have more improvements to come
34+
* Our vendor JavaScript bundle is small through usage of our modern build system, and we still have more improvements to come
3535
* Brotli compression is turned on by default, resulting in another 15-20% improvement on modern browsers (Edge, Chrome, Safari, Firefox, etc.)
3636
* [Bundle splitting](/docs/guides/routing#async-loading-routes) is extremely easy, allowing you to break down large applications into smaller parts and loading as necessary; in addition, we split translations, asset URLs and experiments along with each new bundle
3737
* Performance gains can easily be added into the system over time because of the way the core libraries and build tooling work; we already plan to improve our vendor bundle size even more, create ES2015-specific code bundles (no polyfill or babel-transpiled code) and Preact-fusion plugins (Preact is 87% smaller than React).
@@ -49,7 +49,7 @@ We've spent a lot of time thinking about tooling and APIs to increase the overal
4949

5050
All of these technology choices can be daunting, but much of them are in the core architecture and build system, meaning:
5151

52-
* The core technologies recommended in these guids, such as React and Redux, follow emerging best practices for web development.
52+
* The core technologies recommended in these guides, such as React and Redux, follow emerging best practices for web development.
5353
* For major performance improvements, though, there may need to be changes in areas around [font loading](/docs/guides/performance#font-preloading), using heavy 3rd-party dependencies and using the old Superfine CSS file (vs [Styletron](https://github.com/rtsao/styletron))
5454

5555
#### Unified documentation & open source development

0 commit comments

Comments
 (0)