From ddb0ef98f7986cf27f767348c7e181d991acb4ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 24 Jul 2013 13:13:27 -0700 Subject: [PATCH] Fix "Suppport" type in docs --- docs/docs/07-working-with-the-browser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/07-working-with-the-browser.md b/docs/docs/07-working-with-the-browser.md index 7e4b1a979f..538b32f37d 100644 --- a/docs/docs/07-working-with-the-browser.md +++ b/docs/docs/07-working-with-the-browser.md @@ -110,7 +110,7 @@ _Mounted_ composite components also support the following methods: > calling `this.getDOMNode()`. -## Browser Suppport and Polyfills +## Browser Support and Polyfills At Facebook, we support older browsers, including IE8. We've had polyfills in place for a long time to allow us to write forward-thinking JS. This means we don't have a bunch of hacks scattered throughout our codebase and we can still expect our code to "just work". For example, instead of seeing `+new Date()`, we can just write `Date.now()`. Since the open source React is the same as what we use internally, we've carried over this philosophy of using forward thinking JS.