Index: /CKEditor/trunk/_source/core/ckeditor_base.js
===================================================================
--- /CKEditor/trunk/_source/core/ckeditor_base.js	(revision 6432)
+++ /CKEditor/trunk/_source/core/ckeditor_base.js	(revision 6433)
@@ -10,5 +10,5 @@
 
 // #### Compressed Code
-// Must be updated on changes in the script, as well as updated in the
+// Must be updated on changes in the script as well as updated in the
 // ckeditor_source.js and ckeditor_basic_source.js files.
 
@@ -34,5 +34,5 @@
 			 * A constant string unique for each release of CKEditor. Its value
 			 * is used, by default, to build the URL for all resources loaded
-			 * by the editor code, guaranteing clean cache results when
+			 * by the editor code, guaranteeing clean cache results when
 			 * upgrading.
 			 * @type String
@@ -43,5 +43,5 @@
 			/*							// %REMOVE_LINE%
 			// The production implementation contains a fixed timestamp, unique
-			// for each release, generated by the releaser.
+			// for each release and generated by the releaser.
 			// (Base 36 value of each component of YYMMDDHH - 4 chars total - e.g. 87bm == 08071122)
 			timestamp : '%TIMESTAMP%',
@@ -67,5 +67,5 @@
 
 			/**
-			 * Private object used to hold core stuff. It should not be used out of
+			 * Private object used to hold core stuff. It should not be used outside of
 			 * the API code as properties defined here may change at any time
 			 * without notice.
@@ -75,5 +75,5 @@
 
 			/**
-			 * Indicates the API loading status. The following status are available:
+			 * Indicates the API loading status. The following statuses are available:
 			 *		<ul>
 			 *			<li><b>unloaded</b>: the API is not yet loaded.</li>
@@ -94,7 +94,7 @@
 			/**
 			 * Contains the full URL for the CKEditor installation directory.
-			 * It's possible to manually provide the base path by setting a
+			 * It is possible to manually provide the base path by setting a
 			 * global variable named CKEDITOR_BASEPATH. This global variable
-			 * must be set "before" the editor script loading.
+			 * must be set <strong>before</strong> the editor script loading.
 			 * @type String
 			 * @example
@@ -103,5 +103,5 @@
 			basePath : (function()
 			{
-				// ATTENTION: fixes on this code must be ported to
+				// ATTENTION: fixes to this code must be ported to
 				// var basePath in "core/loader.js".
 
@@ -125,6 +125,6 @@
 				}
 
-				// In IE (only) the script.src string is the raw valued entered in the
-				// HTML. Other browsers return the full resolved URL instead.
+				// In IE (only) the script.src string is the raw value entered in the
+				// HTML source. Other browsers return the full resolved URL instead.
 				if ( path.indexOf(':/') == -1 )
 				{
@@ -145,14 +145,14 @@
 			/**
 			 * Gets the full URL for CKEditor resources. By default, URLs
-			 * returned by this function contains a querystring parameter ("t")
+			 * returned by this function contain a querystring parameter ("t")
 			 * set to the {@link CKEDITOR.timestamp} value.<br />
 			 * <br />
-			 * It's possible to provide a custom implementation to this
+			 * It is possible to provide a custom implementation of this
 			 * function by setting a global variable named CKEDITOR_GETURL.
-			 * This global variable must be set "before" the editor script
+			 * This global variable must be set <strong>before</strong> the editor script
 			 * loading. If the custom implementation returns nothing (==null), the
 			 * default implementation is used.
-			 * @param {String} resource The resource to which get the full URL.
-			 *		It may be a full, absolute or relative URL.
+			 * @param {String} resource The resource whose full URL we want to get.
+			 *		It may be a full, absolute, or relative URL.
 			 * @returns {String} The full URL.
 			 * @example
@@ -198,17 +198,17 @@
 
 /**
- * Function called once a custom configuration file is loaded so it can
- * manipulate the editor instance configuration ({@link CKEDITOR.editor#config }).
- * It is usually defined inside the custom configuration files so they can
+ * Function called upon loading a custom configuration file that can
+ * modify the editor instance configuration ({@link CKEDITOR.editor#config }).
+ * It is usually defined inside the custom configuration files that can
  * include developer defined settings.
  * @name CKEDITOR.editorConfig
  * @function
  * @param {CKEDITOR.config} config A configuration object containing the
- *		settings defined to a {@link CKEDITOR.editor} instance up to this
- *		function call. Note that not all setting may be still available. See
+ *		settings defined for a {@link CKEDITOR.editor} instance up to this
+ *		function call. Note that not all settings may still be available. See
  *		<a href="http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Setting_Configurations#Configuration_Loading_Order">Configuration Loading Order</a>
  *		for details.
  * @example
- * // This is supposed to be in the config.js file.
+ * // This is supposed to be placed in the config.js file.
  * CKEDITOR.editorConfig = function( config )
  * {
