From 624516108c3f3ec49edd9f1ac0278ace0b59d516 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 16 Jan 2009 23:29:09 +1100 Subject: [PATCH] Fix comment typo. --- common/content/completion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/completion.js b/common/content/completion.js index a136b7af..8fb21af5 100644 --- a/common/content/completion.js +++ b/common/content/completion.js @@ -835,7 +835,7 @@ function Completion() //{{{ // Get an element from the stack. If @n is negative, // count from the top of the stack, otherwise, the bottom. // If @m is provided, return the @mth value of element @o - // of the stack entey at @n. + // of the stack entry at @n. let get = function get(n, m, o) { let a = stack[n >= 0 ? n : stack.length + n];