aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--twitter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/twitter.js b/twitter.js
index c3e6f3a..6a3b075 100644
--- a/twitter.js
+++ b/twitter.js
@@ -41,7 +41,7 @@
xhr.open("POST", "http://twitter.com/statuses/update.json", false, username, password);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send("status=" + encodeURIComponent(stat) + "&source=Vimperator");
- liberator.echo("[Twitter] Your post " + '"' + stat + '" (' + stat.length + " charactors) was sent. " );
+ liberator.echo("[Twitter] Your post " + '"' + stat + '" (' + stat.length + " characters) was sent. " );
}
function favTwitter(username, password, user){
var xhr = new XMLHttpRequest();