mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-23 08:13:32 +01:00
Fix comment typo.
This commit is contained in:
@@ -835,7 +835,7 @@ function Completion() //{{{
|
|||||||
// Get an element from the stack. If @n is negative,
|
// Get an element from the stack. If @n is negative,
|
||||||
// count from the top of the stack, otherwise, the bottom.
|
// count from the top of the stack, otherwise, the bottom.
|
||||||
// If @m is provided, return the @mth value of element @o
|
// 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 get = function get(n, m, o)
|
||||||
{
|
{
|
||||||
let a = stack[n >= 0 ? n : stack.length + n];
|
let a = stack[n >= 0 ? n : stack.length + n];
|
||||||
|
|||||||
Reference in New Issue
Block a user