doc: Fix a typo in Prototype.Selector.find which prevented proper documentation parsing. Add a default value for the index argument.
This commit is contained in:
parent
647d93bcc4
commit
a7f05ee8b5
|
@ -42,10 +42,10 @@ window.$$ = function() {
|
|||
// Implementation provided by selector engine.
|
||||
|
||||
/**
|
||||
* Prototype.Selector.find(elements, expression[, index]) -> Element
|
||||
* Prototype.Selector.find(elements, expression[, index = 0]) -> Element
|
||||
* - elements (Enumerable): a collection of DOM elements.
|
||||
* - expression (String): A CSS selector.
|
||||
# - index: Numeric index of the match to return, or 0 if omitted.
|
||||
* - index: Numeric index of the match to return, defaults to 0.
|
||||
*
|
||||
* Filters the given collection of elements with `expression` and returns the
|
||||
* first matching element (or the `index`th matching element if `index` is
|
||||
|
|
Loading…
Reference in New Issue