docs: Fix simple typo, subsequece -> subsequence (#2582)
There is a small typo in mithril.js, render/render.js. Should read `subsequence` rather than `subsequece`.
This commit is contained in:
parent
39c08f967a
commit
11e8e861fc
2 changed files with 3 additions and 3 deletions
|
|
@ -778,7 +778,7 @@ var _12 = function($window) {
|
||||||
// takes a list of unique numbers (-1 is special and can
|
// takes a list of unique numbers (-1 is special and can
|
||||||
// occur multiple times) and returns an array with the indices
|
// occur multiple times) and returns an array with the indices
|
||||||
// of the items that are part of the longest increasing
|
// of the items that are part of the longest increasing
|
||||||
// subsequece
|
// subsequence
|
||||||
var lisTemp = []
|
var lisTemp = []
|
||||||
function makeLisIndices(a) {
|
function makeLisIndices(a) {
|
||||||
var result = [0]
|
var result = [0]
|
||||||
|
|
@ -1839,4 +1839,4 @@ m.vnode = Vnode
|
||||||
m.PromisePolyfill = PromisePolyfill
|
m.PromisePolyfill = PromisePolyfill
|
||||||
if (typeof module !== "undefined") module["exports"] = m
|
if (typeof module !== "undefined") module["exports"] = m
|
||||||
else window.m = m
|
else window.m = m
|
||||||
}());
|
}());
|
||||||
|
|
|
||||||
|
|
@ -514,7 +514,7 @@ module.exports = function($window) {
|
||||||
// takes a list of unique numbers (-1 is special and can
|
// takes a list of unique numbers (-1 is special and can
|
||||||
// occur multiple times) and returns an array with the indices
|
// occur multiple times) and returns an array with the indices
|
||||||
// of the items that are part of the longest increasing
|
// of the items that are part of the longest increasing
|
||||||
// subsequece
|
// subsequence
|
||||||
var lisTemp = []
|
var lisTemp = []
|
||||||
function makeLisIndices(a) {
|
function makeLisIndices(a) {
|
||||||
var result = [0]
|
var result = [0]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue