From 02edab80530f6b7ea646820e091cd7050367c8e0 Mon Sep 17 00:00:00 2001 From: Martin Muzatko Date: Thu, 25 Oct 2018 20:59:49 +0200 Subject: [PATCH] fixed comment for version context --- docs/.vuepress/theme/SearchBox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vuepress/theme/SearchBox.vue b/docs/.vuepress/theme/SearchBox.vue index 8d4ba11e77..d3644ae09f 100644 --- a/docs/.vuepress/theme/SearchBox.vue +++ b/docs/.vuepress/theme/SearchBox.vue @@ -63,7 +63,7 @@ export default { for (let i = 0; i < pages.length; i++) { if (res.length >= max) break const p = pages[i] - // filter out results that do not match current ersion context + // filter out results that do not match current version context if (!~p.path.slice(1).indexOf(searchContext)) continue // filter out results that do not match current locale if (this.getPageLocalePath(p) !== localePath) continue