Skip to content

Commit

Permalink
Merge pull request #12691 from jimbeaudoin/patch-1
Browse files Browse the repository at this point in the history
Fix deprecation link for Ember.String.fmt
  • Loading branch information
rwjblue committed Dec 8, 2015
2 parents 192fceb + 254fdf1 commit 839e765
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ember-runtime/lib/system/string.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function fmt(str, formats) {
deprecate(
'Ember.String.fmt is deprecated, use ES6 template strings instead.',
false,
{ id: 'ember-string-utils.fmt', until: '3.0.0', url: 'https://babeljs.io/docs/learn-es6/#template-strings' }
{ id: 'ember-string-utils.fmt', until: '3.0.0', url: 'http://babeljs.io/docs/learn-es2015/#template-strings' }
);
return _fmt(...arguments);
}
Expand Down Expand Up @@ -172,7 +172,7 @@ export default {
@param {Array} formats An array of parameters to interpolate into string.
@return {String} formatted string
@public
@deprecated Use ES6 template strings instead: https://babeljs.io/docs/learn-es6/#template-strings');
@deprecated Use ES6 template strings instead: http://babeljs.io/docs/learn-es2015/#template-strings
*/
fmt,

Expand Down

0 comments on commit 839e765

Please sign in to comment.