From 993d4a0f5e1f970f5b9887dfbe380a1f5169f5bc Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Wed, 26 Oct 2022 00:04:09 -0700 Subject: [PATCH] Fix typos --- examples/get/index.html | 2 +- karma.conf.cjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/get/index.html b/examples/get/index.html index 86433235a3..f09c9ae317 100644 --- a/examples/get/index.html +++ b/examples/get/index.html @@ -18,7 +18,7 @@

axios.get

'' + '
' + '' + person.name + '' + - '
Github: ' + person.github + '
' + + '
GitHub: ' + person.github + '
' + '
Twitter: ' + person.twitter + '
' + '
' + '
' diff --git a/karma.conf.cjs b/karma.conf.cjs index fca512f3d3..9e69f5e103 100644 --- a/karma.conf.cjs +++ b/karma.conf.cjs @@ -129,7 +129,7 @@ module.exports = function(config) { ); browsers = ['Firefox']; } else if (process.env.GITHUB_ACTIONS === 'true') { - console.log('Running ci on Github Actions.'); + console.log('Running ci on GitHub Actions.'); browsers = ['FirefoxHeadless', 'ChromeHeadless']; } else { browsers = browsers || ['Chrome'];