From af0a1125855394d0d2902a21eb7571457b78783e Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Mon, 24 Sep 2018 20:02:46 +0200
Subject: [PATCH] chore: instalbul -> istanbul

---
 docs/local-development.md                 | 2 +-
 lib/workers/pr/changelog/release-notes.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/local-development.md b/docs/local-development.md
index 642b7a4335..0406ece950 100644
--- a/docs/local-development.md
+++ b/docs/local-development.md
@@ -58,7 +58,7 @@ You can run just the Jest unit tests by running `yarn jest`. You can also run ju
 #### Coverage
 
 The Renovate project maintains 100% test coverage, so any Pull Request will fail if it does not contain full coverage for code.
-Using `// instanbul ignore` is not ideal but sometimes is a pragmatic solution if an additional test wouldn't really prove anything.
+Using `// istanbul ignore` is not ideal but sometimes is a pragmatic solution if an additional test wouldn't really prove anything.
 
 To view the current test coverage locally, open up `coverage/lcov-report/index.html` in your browser.
 
diff --git a/lib/workers/pr/changelog/release-notes.js b/lib/workers/pr/changelog/release-notes.js
index 870e059353..aece052a1d 100644
--- a/lib/workers/pr/changelog/release-notes.js
+++ b/lib/workers/pr/changelog/release-notes.js
@@ -112,7 +112,7 @@ function sectionize(text, level) {
 async function getReleaseNotesMd(repository, version, githubBaseURL) {
   logger.trace(`getReleaseNotes(${repository}, ${version})`);
   const skippedRepos = ['facebook/react-native'];
-  // instanbul ignore if
+  // istanbul ignore if
   if (skippedRepos.includes(repository)) {
     return null;
   }
-- 
GitLab