From e86b0ab55e649c281aa541447e852da119a40588 Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Thu, 31 Oct 2024 00:38:44 -0700 Subject: [PATCH] Fix capitalization --- .github/dependabot.yml | 2 +- readme.md | 4 ++-- src/fetchers/gist-fetcher.js | 2 +- src/fetchers/stats-fetcher.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d762530895ca6..fe5ed62621a6b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - # Maintain dependencies for NPM + # Maintain dependencies for npm - package-ecosystem: npm directory: "/" schedule: diff --git a/readme.md b/readme.md index 363b008b2f8c2..61f09e6fefe40 100644 --- a/readme.md +++ b/readme.md @@ -657,7 +657,7 @@ Change the `?username=` value to your [WakaTime](https://wakatime.com) username. ![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra\&hide=issues\&show_icons=true) -* Shows Github logo instead rank level +* Shows GitHub logo instead rank level ![Anurag's GitHub stats](https://github-readme-stats.vercel.app/api?username=anuraghazra\&rank_icon=github) @@ -813,7 +813,7 @@ Since the GitHub API only allows 5k requests per hour, my `https://github-readme ## Disable rate limit protections -Github Readme Stats contains several Vercel environment variables that can be used to remove the rate limit protections: +GitHub Readme Stats contains several Vercel environment variables that can be used to remove the rate limit protections: * `CACHE_SECONDS`: This environment variable takes precedence over our cache minimum and maximum values and can circumvent these values for self-hosted Vercel instances. diff --git a/src/fetchers/gist-fetcher.js b/src/fetchers/gist-fetcher.js index 4e0e0f5e7e4f2..cd4006b2224c5 100644 --- a/src/fetchers/gist-fetcher.js +++ b/src/fetchers/gist-fetcher.js @@ -83,7 +83,7 @@ const calculatePrimaryLanguage = (files) => { /** * Fetch GitHub gist information by given username and ID. * - * @param {string} id Github gist ID. + * @param {string} id GitHub gist ID. * @returns {Promise} Gist data. */ const fetchGist = async (id) => { diff --git a/src/fetchers/stats-fetcher.js b/src/fetchers/stats-fetcher.js index 115cd50a51564..88fd72fcb9760 100644 --- a/src/fetchers/stats-fetcher.js +++ b/src/fetchers/stats-fetcher.js @@ -105,7 +105,7 @@ const fetcher = (variables, token) => { * Fetch stats information for a given username. * * @param {object} variables Fetcher variables. - * @param {string} variables.username Github username. + * @param {string} variables.username GitHub username. * @param {boolean} variables.includeMergedPullRequests Include merged pull requests. * @param {boolean} variables.includeDiscussions Include discussions. * @param {boolean} variables.includeDiscussionsAnswers Include discussions answers.