diff options
Diffstat (limited to 'misc/autocomplete.js')
-rw-r--r-- | misc/autocomplete.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/autocomplete.js b/misc/autocomplete.js index c49a20ecd..aa2deb019 100644 --- a/misc/autocomplete.js +++ b/misc/autocomplete.js @@ -1,7 +1,7 @@ // $Id$ /** - * Attaches the autocomplete behaviour to all required fields + * Attaches the autocomplete behavior to all required fields */ Drupal.behaviors.autocomplete = function (context) { var acdb = []; @@ -282,7 +282,7 @@ Drupal.ACDB.prototype.search = function (searchString) { } }, error: function (xmlhttp) { - alert(Drupal.t("An HTTP error @status occured. \n@uri", { '@status': xmlhttp.status, '@uri': db.uri })); + alert(Drupal.t("An HTTP error @status occurred. \n@uri", { '@status': xmlhttp.status, '@uri': db.uri })); } }); }, this.delay); |