summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc2
-rw-r--r--includes/locale.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc
index b6963c677..1eb9bae2b 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1966,7 +1966,7 @@ function drupal_get_js($scope = 'header', $javascript = NULL) {
* 'class' => 'draggable',
* );
* @endcode
- *
+ *
* Calling drupal_add_tabledrag() would then be written as such:
* @code
* drupal_add_tabledrag('my-module-table', 'order', 'sibling', 'my-elements-weight');
diff --git a/includes/locale.inc b/includes/locale.inc
index 5b6410049..06b67e4f5 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -1016,7 +1016,7 @@ function _locale_import_read_po($op, $file, $mode = NULL, $lang = NULL, $group =
while (!feof($fd)) {
$line = fgets($fd, 10*1024); // A line should not be this long
if ($lineno == 0) {
- // The first line might come with a UTF-8 BOM, which should be removed.
+ // The first line might come with a UTF-8 BOM, which should be removed.
$line = str_replace("\xEF\xBB\xBF", '', $line);
}
$lineno++;