From 414e74ba475cf9746a6ef58b4b43ef0c32a0ca7d Mon Sep 17 00:00:00 2001 From: Scotty Simpson Date: Sun, 30 Apr 2017 23:36:47 -0700 Subject: [PATCH] docs: Fix typo in es6.md (#1827) --- docs/es6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/es6.md b/docs/es6.md index 3c19613f..7a453c5d 100644 --- a/docs/es6.md +++ b/docs/es6.md @@ -5,7 +5,7 @@ --- -Mithril is written in ES5, and is fully compatible with ES6 as well. ES6 is a recent update to Javascript that introduces new syntax sugar for various common cases. It's not yet fully supported by all major browsers and it's not a requirement for writing application, but it may be pleasing to use depending on your team's preferences. +Mithril is written in ES5, and is fully compatible with ES6 as well. ES6 is a recent update to Javascript that introduces new syntax sugar for various common cases. It's not yet fully supported by all major browsers and it's not a requirement for writing an application, but it may be pleasing to use depending on your team's preferences. In some limited environments, it's possible to use a significant subset of ES6 directly without extra tooling (for example, in internal applications that do not support IE). However, for the vast majority of use cases, a compiler toolchain like [Babel](https://babeljs.io) is required to compile ES6 features down to ES5.