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:
Tim Gates 2020-04-09 05:07:28 +10:00 committed by GitHub
parent 39c08f967a
commit 11e8e861fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -778,7 +778,7 @@ var _12 = function($window) {
// takes a list of unique numbers (-1 is special and can
// occur multiple times) and returns an array with the indices
// of the items that are part of the longest increasing
// subsequece
// subsequence
var lisTemp = []
function makeLisIndices(a) {
var result = [0]
@ -1839,4 +1839,4 @@ m.vnode = Vnode
m.PromisePolyfill = PromisePolyfill
if (typeof module !== "undefined") module["exports"] = m
else window.m = m
}());
}());

View file

@ -514,7 +514,7 @@ module.exports = function($window) {
// takes a list of unique numbers (-1 is special and can
// occur multiple times) and returns an array with the indices
// of the items that are part of the longest increasing
// subsequece
// subsequence
var lisTemp = []
function makeLisIndices(a) {
var result = [0]