From 11e8e861fc94ef781ae6fd91d74f068f57700e3e Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 9 Apr 2020 05:07:28 +1000 Subject: [PATCH] docs: Fix simple typo, subsequece -> subsequence (#2582) There is a small typo in mithril.js, render/render.js. Should read `subsequence` rather than `subsequece`. --- mithril.js | 4 ++-- render/render.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mithril.js b/mithril.js index 377e0a5d..cf3e65c1 100644 --- a/mithril.js +++ b/mithril.js @@ -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 -}()); \ No newline at end of file +}()); diff --git a/render/render.js b/render/render.js index 7e6e62f9..70c7568b 100644 --- a/render/render.js +++ b/render/render.js @@ -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]