summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.api.php2
-rw-r--r--modules/system/system.tar.inc2
-rw-r--r--modules/system/system.test2
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
index 1e0ff0fc2..cff51c4ff 100644
--- a/modules/system/system.api.php
+++ b/modules/system/system.api.php
@@ -4429,7 +4429,7 @@ function hook_menu_site_status_alter(&$menu_site_status, $path) {
/**
* Register information about FileTransfer classes provided by a module.
*
- * The FileTransfer class allows transfering files over a specific type of
+ * The FileTransfer class allows transferring files over a specific type of
* connection. Core provides classes for FTP and SSH. Contributed modules are
* free to extend the FileTransfer base class to add other connection types,
* and if these classes are registered via hook_filetransfer_info(), those
diff --git a/modules/system/system.tar.inc b/modules/system/system.tar.inc
index fd1d3c825..32bf7f066 100644
--- a/modules/system/system.tar.inc
+++ b/modules/system/system.tar.inc
@@ -169,7 +169,7 @@ class Archive_Tar // extends PEAR
// }}}
/**
- * OS independant PHP extension load. Remember to take care
+ * OS independent PHP extension load. Remember to take care
* on the correct extension name for case sensitive OSes.
* The function is the copy of PEAR::loadExtension().
*
diff --git a/modules/system/system.test b/modules/system/system.test
index d482afa22..a75153f6a 100644
--- a/modules/system/system.test
+++ b/modules/system/system.test
@@ -1816,7 +1816,7 @@ class TokenReplaceTestCase extends DrupalWebTestCase {
$result = token_replace($source, array('node' => $node), array('language' => $language, 'clear' => TRUE));
$result = $this->assertEqual($target, $result, 'Valid tokens replaced while invalid tokens cleared out.');
- // Test without using the clear parameter (non-existant token untouched).
+ // Test without using the clear parameter (non-existent token untouched).
$target .= '[user:name]';
$target .= '[bogus:token]';
$result = token_replace($source, array('node' => $node), array('language' => $language));