Fix a typo in design principles doc (#8985)

unambigious → unambiguous
This commit is contained in:
Prayag Verma 2017-02-13 20:39:00 +05:30 committed by Dan Abramov
parent 77c7792556
commit c60f852cdb
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ Optimizing for search is also important because of our reliance on [codemods](ht
[JSX](/react/docs/displaying-data.html#jsx-syntax) plays a similar role. While it is not required with React, we use it extensively at Facebook both for aesthetic and pragmatic reasons.
In our codebase, JSX provides an unambigious hint to the tools that they are dealing with a React element tree. This makes it possible to add build-time optimizations such as [hoisting constant elements](http://babeljs.io/docs/plugins/transform-react-constant-elements/), safely lint and codemod internal component usage, and [include JSX source location](https://github.com/facebook/react/pull/6771) into the warnings.
In our codebase, JSX provides an unambiguous hint to the tools that they are dealing with a React element tree. This makes it possible to add build-time optimizations such as [hoisting constant elements](http://babeljs.io/docs/plugins/transform-react-constant-elements/), safely lint and codemod internal component usage, and [include JSX source location](https://github.com/facebook/react/pull/6771) into the warnings.
### Dogfooding