From b4c945c518ec891b7662ad08edace6d7e0f987f5 Mon Sep 17 00:00:00 2001 From: Harry Mellor <19981378+hmellor@users.noreply.github.com> Date: Mon, 10 Mar 2025 14:06:49 +0100 Subject: [PATCH] Correct capitalisation: `Github` -> `GitHub` Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> --- .github/workflows/publish.yml | 2 +- .github/workflows/scripts/create_release.js | 2 +- README.md | 4 ++-- vllm/engine/async_llm_engine.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fc6739eb3558..bfd02879965e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,7 +39,7 @@ jobs: const script = require('.github/workflows/scripts/create_release.js') await script(github, context, core) - # NOTE(simon): No longer build wheel using Github Actions. See buildkite's release workflow. + # NOTE(simon): No longer build wheel using GitHub Actions. See buildkite's release workflow. # wheel: # name: Build Wheel # runs-on: ${{ matrix.os }} diff --git a/.github/workflows/scripts/create_release.js b/.github/workflows/scripts/create_release.js index 475742118afe..0feb5dc2cf84 100644 --- a/.github/workflows/scripts/create_release.js +++ b/.github/workflows/scripts/create_release.js @@ -1,4 +1,4 @@ -// Uses Github's API to create the release and wait for result. +// Uses GitHub's API to create the release and wait for result. // We use a JS script since github CLI doesn't provide a way to wait for the release's creation and returns immediately. module.exports = async (github, context, core) => { diff --git a/README.md b/README.md index 49d6d525161d..5367972fc7e1 100644 --- a/README.md +++ b/README.md @@ -151,9 +151,9 @@ If you use vLLM for your research, please cite our [paper](https://arxiv.org/abs ## Contact Us -- For technical questions and feature requests, please use Github issues or discussions. +- For technical questions and feature requests, please use GitHub issues or discussions. - For discussing with fellow users and coordinating contributions and development, please use Slack. -- For security disclosures, please use Github's security advisory feature. +- For security disclosures, please use GitHub's security advisory feature. - For collaborations and partnerships, please contact us at vllm-questions AT lists.berkeley.edu. ## Media Kit diff --git a/vllm/engine/async_llm_engine.py b/vllm/engine/async_llm_engine.py index 90e66b005f39..ebba34c5c867 100644 --- a/vllm/engine/async_llm_engine.py +++ b/vllm/engine/async_llm_engine.py @@ -69,7 +69,7 @@ def _log_task_completion(task: asyncio.Task, error_callback(exception) raise AsyncEngineDeadError( "Task finished unexpectedly. This should never happen! " - "Please open an issue on Github. See stack trace above for the " + "Please open an issue on GitHub. See stack trace above for the " "actual cause.") from e