aboutsummaryrefslogtreecommitdiffstats
path: root/background_page.html
diff options
context:
space:
mode:
authorNiklas Baumstark2012-01-24 00:08:04 +0100
committerNiklas Baumstark2012-04-10 23:54:38 +0200
commit2eae98f3b4b6cccaa49f91b282854c39145f12a4 (patch)
treeae316be291bad0433393dbae537c501117e2d46b /background_page.html
parent14cb3e4f8e552c082cae799f8dca511c6c267891 (diff)
downloadvimium-2eae98f3b4b6cccaa49f91b282854c39145f12a4.tar.bz2
improve comments and fix some naming style inconsistencies
Diffstat (limited to 'background_page.html')
-rw-r--r--background_page.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/background_page.html b/background_page.html
index 99c7d430..f220d76c 100644
--- a/background_page.html
+++ b/background_page.html
@@ -320,7 +320,7 @@
maxResults: 20000,
startTime: 0,
}, function(history) {
- // sorting in asceding order, so we can push new items to the end later
+ // sorting in ascending order, so we can push new items to the end later
history.sort(function(a, b) {
// visitCount may be undefined
return (a.visitCount || 0) - (b.visitCount || 0);