diff options
Diffstat (limited to 'includes/file.inc')
-rw-r--r-- | includes/file.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/file.inc b/includes/file.inc index eb8c075e2..6a0ef2334 100644 --- a/includes/file.inc +++ b/includes/file.inc @@ -747,7 +747,7 @@ function file_unmanaged_delete($path) { if (is_file($path)) { return unlink($path); } - // Return TRUE for non-existant file, but log that nothing was actually + // Return TRUE for non-existent file, but log that nothing was actually // deleted, as the current state is the indended result. if (!file_exists($path)) { watchdog('file', 'The file %path was not deleted, because it does not exist.', array('%path' => $path), WATCHDOG_NOTICE); |