1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-05 15:25:45 +01:00

Fix comment typo.

This commit is contained in:
Doug Kearns
2009-01-16 23:29:09 +11:00
parent a388a02cf0
commit 624516108c

View File

@@ -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];