Browse Source

Minor typo fixing.

fredck 11 years ago
parent
commit
02fa1d4ce6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/ckeditor5-ui/src/promise.js

+ 2 - 2
packages/ckeditor5-ui/src/promise.js

@@ -8,13 +8,13 @@
 'use strict';
 
 /**
- * A ES6 compatible Promise class, used for deferred and asynchronous computations.
+ * An ES6 compatible Promise class, used for deferred and asynchronous computations.
  *
  * @class Promise
  */
 
 CKEDITOR.define( function() {
-	// For now we're using the native browser implementation of Promise, a ES6 feature. Just IE is not supporting it so
+	// For now we're using the native browser implementation of Promise, an ES6 feature. Just IE is not supporting it so
 	// a polyfill will have to be developed for it.
 	//
 	// http://caniuse.com/#feat=promises