From 4b4357e452b6039033745b6158ac1b7376851646 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Mon, 25 May 2020 10:08:49 +0300 Subject: [PATCH] fix codespell issues --- .circleci/config.yml | 2 +- docs/sources/reference/functions.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ff01267..cae3783 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -162,7 +162,7 @@ jobs: steps: - checkout - run: sudo pip install codespell - - run: codespell -S './.git*,./src/img*' -L que --ignore-words=./.codespell_ignore + - run: codespell -S './.git*,./src/img*,./yarn.lock' -L que --ignore-words=./.codespell_ignore workflows: version: 2 diff --git a/docs/sources/reference/functions.md b/docs/sources/reference/functions.md index 1391b5f..c2f1bb3 100644 --- a/docs/sources/reference/functions.md +++ b/docs/sources/reference/functions.md @@ -324,7 +324,7 @@ Replace metric name using pattern. Pattern is regex or regular string. If regex |$' | Inserts the portion of the string that follows the matched substring. | |$n | Where n is a non-negative integer less than 100, inserts the nth parenthesized submatch string, provided the first argument was a RegExp object. | -For more detais see [String.prototype.replace()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace) function. +For more details see [String.prototype.replace()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace) function. Examples: ```