From 4d2f23b8fca555cffe24a4f34843b8e4772aafc1 Mon Sep 17 00:00:00 2001 From: Julien Palmas Date: Thu, 7 Sep 2017 09:14:47 +0200 Subject: [PATCH] Update 0000-deprecation-ember-string.md typo --- text/0000-deprecation-ember-string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/0000-deprecation-ember-string.md b/text/0000-deprecation-ember-string.md index ac3ad51f64..0754679013 100644 --- a/text/0000-deprecation-ember-string.md +++ b/text/0000-deprecation-ember-string.md @@ -8,7 +8,7 @@ This RFC proposes to deprecate the prototype extensions done by `Ember.String`, # Motivation -Much of the public API of Ember was designed and published some time ago, when the client-side landscape looked much different. It was a time without without many utilities and methods that have been introduced to JavaScript since, without the current rich npm ecosystem, and without ES6 modules. On the Ember side, Ember CLI the subsequent addons were still to be introduced. Global mode was the way to go, and extending native prototypes like Ember does for `String`, `Array` and `Function` was a common practice. +Much of the public API of Ember was designed and published some time ago, when the client-side landscape looked much different. It was a time without many utilities and methods that have been introduced to JavaScript since, without the current rich npm ecosystem, and without ES6 modules. On the Ember side, Ember CLI the subsequent addons were still to be introduced. Global mode was the way to go, and extending native prototypes like Ember does for `String`, `Array` and `Function` was a common practice. With the introduction of [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-javascript-module-api.md), an opportunity to reduce the API that is shipped by default with an Ember application appears. A lot of nice-to-have functionality that was added at that time can now be moved to optional packages and addons, where they can be maintained and evolved without being tied to the core of the framework.