1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Fixed typos (#74)

This commit is contained in:
Pascal Borreli 2016-10-26 08:19:05 +01:00 committed by Leo Lamprecht
parent d9ea4ce312
commit b5f8f5054f

View file

@ -54,7 +54,7 @@ export default () => (
)
```
That means pages never load unneccessary code!
That means pages never load unnecessary code!
### CSS
@ -271,7 +271,7 @@ Since every class name is invoked with the `css()` helper, Next.js can intellige
This is important for server-side rendering, but also during the lifecycle of the page. Since Next.js enables `pushState` transitions that load components dynamically, unnecessary `<style>` elements would bring down performance over time.
This is a very signifcant benefit over approaches like `require(xxxxx.css')`.
This is a very significant benefit over approaches like `require(xxxxx.css')`.
### Correctness