You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2023/12/05 21:33:14 UTC

(arrow) branch main updated: GH-38954: [Dev] Fix spelling (#38955)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 67b8df4b51 GH-38954: [Dev] Fix spelling (#38955)
67b8df4b51 is described below

commit 67b8df4b51b33784f330d6a60b92c7aa003ec840
Author: Josh Soref <21...@users.noreply.github.com>
AuthorDate: Tue Dec 5 16:33:06 2023 -0500

    GH-38954: [Dev] Fix spelling (#38955)
    
    
    
    ### Rationale for this change
    
    ### What changes are included in this PR?
    
    Spelling fixes to dev/
    
    ### Are these changes tested?
    
    ### Are there any user-facing changes?
    
    * Closes: #38954
    
    Authored-by: Josh Soref <21...@users.noreply.github.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 dev/archery/README.md                                        |  2 +-
 dev/archery/archery/bot.py                                   |  2 +-
 dev/archery/archery/cli.py                                   |  4 ++--
 dev/archery/archery/crossbow/cli.py                          |  2 +-
 dev/archery/archery/crossbow/core.py                         | 12 ++++++------
 dev/archery/archery/crossbow/reports.py                      |  2 +-
 .../crossbow/tests/fixtures/crossbow-job-no-failure.yaml     |  2 +-
 .../archery/crossbow/tests/fixtures/crossbow-job.yaml        |  2 +-
 dev/archery/archery/release/cli.py                           |  4 ++--
 dev/archery/archery/release/core.py                          |  2 +-
 .../tests/fixtures/event-issue-comment-build-command.json    |  2 +-
 .../fixtures/event-issue-comment-by-non-authorized-user.json |  2 +-
 .../tests/fixtures/event-issue-comment-by-ursabot.json       |  2 +-
 .../fixtures/event-issue-comment-not-mentioning-ursabot.json |  2 +-
 .../fixtures/event-issue-comment-with-empty-command.json     |  2 +-
 .../archery/tests/fixtures/event-pr-review-committer.json    |  2 +-
 .../tests/fixtures/event-pr-review-non-committer.json        |  2 +-
 .../archery/tests/fixtures/event-pull-request-opened.json    |  2 +-
 .../fixtures/event-pull-request-target-opened-committer.json |  2 +-
 .../event-pull-request-target-opened-non-committer.json      |  2 +-
 .../fixtures/event-pull-request-target-synchronize.json      |  2 +-
 dev/archery/archery/tests/fixtures/issue-26.json             |  4 ++--
 .../tests/fixtures/pull-request-26-awaiting-review.json      |  2 +-
 .../archery/tests/fixtures/pull-request-26-commit.json       | 10 +++++-----
 dev/archery/archery/tests/fixtures/pull-request-26.json      |  2 +-
 dev/archery/archery/tests/test_bot.py                        |  2 +-
 dev/conbench_envs/README.md                                  |  2 +-
 dev/merge_arrow_pr.py                                        |  2 +-
 dev/tasks/conda-recipes/README.md                            |  2 +-
 dev/tasks/conda-recipes/arrow-cpp/meta.yaml                  |  2 +-
 dev/tasks/java-jars/README.md                                |  2 +-
 dev/tasks/linux-packages/apache-arrow-release/Rakefile       | 12 ++++++------
 dev/tasks/macros.jinja                                       |  2 +-
 dev/tasks/python-wheels/github.osx.arm64.yml                 |  2 +-
 dev/tasks/r/github.macos-linux.local.yml                     |  2 +-
 dev/tasks/tasks.yml                                          |  2 +-
 dev/tasks/vcpkg-tests/github.windows.yml                     |  2 +-
 37 files changed, 54 insertions(+), 54 deletions(-)

diff --git a/dev/archery/README.md b/dev/archery/README.md
index 60417db047..9991e7402d 100644
--- a/dev/archery/README.md
+++ b/dev/archery/README.md
@@ -27,7 +27,7 @@ Archery is documented on the Arrow website:
 
 # Installing Archery
 
-See the pages linked aboved for more details. As a general overview, Archery
+See the pages linked above for more details. As a general overview, Archery
 comes in a number of subpackages, each needing to be installed if you want
 to use the functionality of it:
 
diff --git a/dev/archery/archery/bot.py b/dev/archery/archery/bot.py
index e8fbcfcb0f..68b24dc08d 100644
--- a/dev/archery/archery/bot.py
+++ b/dev/archery/archery/bot.py
@@ -333,7 +333,7 @@ def _clone_arrow_and_crossbow(dest, crossbow_repo, pull_request):
     dest : Path
         Filesystem path to clone the repositories to.
     crossbow_repo : str
-        Github repository name, like kszucs/crossbow.
+        GitHub repository name, like kszucs/crossbow.
     pull_request : pygithub.PullRequest
         Object containing information about the pull request the comment bot
         was triggered from.
diff --git a/dev/archery/archery/cli.py b/dev/archery/archery/cli.py
index 7211b6c87a..32b0942630 100644
--- a/dev/archery/archery/cli.py
+++ b/dev/archery/archery/cli.py
@@ -167,7 +167,7 @@ def _apply_options(cmd, options):
 @click.option("--with-hdfs", default=None, type=BOOL,
               help="Build the Arrow HDFS bridge.")
 @click.option("--with-hiveserver2", default=None, type=BOOL,
-              help="Build the HiveServer2 client and arrow adapater.")
+              help="Build the HiveServer2 client and arrow adapter.")
 @click.option("--with-ipc", default=None, type=BOOL,
               help="Build the Arrow IPC extensions.")
 @click.option("--with-json", default=None, type=BOOL,
@@ -177,7 +177,7 @@ def _apply_options(cmd, options):
 @click.option("--with-parquet", default=None, type=BOOL,
               help="Build with Parquet file support.")
 @click.option("--with-python", default=None, type=BOOL,
-              help="Build the Arrow CPython extesions.")
+              help="Build the Arrow CPython extensions.")
 @click.option("--with-r", default=None, type=BOOL,
               help="Build the Arrow R extensions. This is not a CMake option, "
               "it will toggle required options")
diff --git a/dev/archery/archery/crossbow/cli.py b/dev/archery/archery/crossbow/cli.py
index a44115c2bc..d30d012859 100644
--- a/dev/archery/archery/crossbow/cli.py
+++ b/dev/archery/archery/crossbow/cli.py
@@ -174,7 +174,7 @@ def submit(obj, tasks, groups, params, job_prefix, config_path, arrow_version,
                    'locally. Examples: https://github.com/apache/arrow or '
                    'https://github.com/raulcd/arrow.')
 @click.option('--rc', default=None,
-              help='Relase Candidate number.')
+              help='Release Candidate number.')
 @click.option('--version', default=None,
               help='Release version.')
 @click.option('--verify-binaries', is_flag=True, default=False,
diff --git a/dev/archery/archery/crossbow/core.py b/dev/archery/archery/crossbow/core.py
index 3353c30b1a..57e91e2067 100644
--- a/dev/archery/archery/crossbow/core.py
+++ b/dev/archery/archery/crossbow/core.py
@@ -502,7 +502,7 @@ class Repo:
                 logger.error('Attempt {} has failed with message: {}.'
                              .format(i + 1, str(e)))
                 logger.error('Error message {}'.format(e.msg))
-                logger.error('List of errors provided by Github:')
+                logger.error('List of errors provided by GitHub:')
                 for err in e.errors:
                     logger.error(' - {}'.format(err))
 
@@ -526,7 +526,7 @@ class Repo:
 
             time.sleep(retry_backoff)
 
-        raise RuntimeError('Github asset uploading has failed!')
+        raise RuntimeError('GitHub asset uploading has failed!')
 
     def github_upload_asset_curl(self, release, path, name, mime):
         upload_url, _ = release.upload_url.split('{?')
@@ -1029,8 +1029,8 @@ class TaskAssets(dict):
 
     def __init__(self, github_release, artifact_patterns,
                  validate_patterns=True):
-        # HACK(kszucs): don't expect uploaded assets of no atifacts were
-        # defiened for the tasks in order to spare a bit of github rate limit
+        # HACK(kszucs): don't expect uploaded assets of no artifacts were
+        # defined for the tasks in order to spare a bit of github rate limit
         if not artifact_patterns:
             return
 
@@ -1142,7 +1142,7 @@ class Job(Serializable):
     @classmethod
     def from_config(cls, config, target, tasks=None, groups=None, params=None):
         """
-        Intantiate a job from based on a config.
+        Instantiate a job from based on a config.
 
         Parameters
         ----------
@@ -1302,7 +1302,7 @@ class Config(dict):
         }
 
     def validate(self):
-        # validate that the task groups are properly refering to the tasks
+        # validate that the task groups are properly referring to the tasks
         for group_name, group in self['groups'].items():
             for pattern in group:
                 # remove the negation character for blocklisted tasks
diff --git a/dev/archery/archery/crossbow/reports.py b/dev/archery/archery/crossbow/reports.py
index ea10e75ad3..d8efa42341 100644
--- a/dev/archery/archery/crossbow/reports.py
+++ b/dev/archery/archery/crossbow/reports.py
@@ -282,7 +282,7 @@ class CommentReport(Report):
 
     badges = {
         'github': _markdown_badge.format(
-            title='Github Actions',
+            title='GitHub Actions',
             badge=(
                 'https://github.com/{repo}/actions/workflows/crossbow.yml/'
                 'badge.svg?branch={branch}'
diff --git a/dev/archery/archery/crossbow/tests/fixtures/crossbow-job-no-failure.yaml b/dev/archery/archery/crossbow/tests/fixtures/crossbow-job-no-failure.yaml
index eb03bbee0b..68915a3f3d 100644
--- a/dev/archery/archery/crossbow/tests/fixtures/crossbow-job-no-failure.yaml
+++ b/dev/archery/archery/crossbow/tests/fixtures/crossbow-job-no-failure.yaml
@@ -1,7 +1,7 @@
 !Job
 target: !Target
   head: f766a1d615dd1b7ee706d05102e579195951a61c
-  email: unkown
+  email: unknown
   branch: refs/pull/4435/merge
   remote: https://github.com/apache/arrow
   version: 0.13.0.dev306
diff --git a/dev/archery/archery/crossbow/tests/fixtures/crossbow-job.yaml b/dev/archery/archery/crossbow/tests/fixtures/crossbow-job.yaml
index f6de07dd45..e8224ef01a 100644
--- a/dev/archery/archery/crossbow/tests/fixtures/crossbow-job.yaml
+++ b/dev/archery/archery/crossbow/tests/fixtures/crossbow-job.yaml
@@ -1,7 +1,7 @@
 !Job
 target: !Target
   head: f766a1d615dd1b7ee706d05102e579195951a61c
-  email: unkown
+  email: unknown
   branch: refs/pull/4435/merge
   remote: https://github.com/apache/arrow
   version: 0.13.0.dev306
diff --git a/dev/archery/archery/release/cli.py b/dev/archery/archery/release/cli.py
index ed15dcb1ed..92fdbb801f 100644
--- a/dev/archery/archery/release/cli.py
+++ b/dev/archery/archery/release/cli.py
@@ -32,7 +32,7 @@ from .core import IssueTracker, Release
               help='OAuth token for GitHub authentication')
 @click.pass_obj
 def release(obj, src, github_token):
-    """Release releated commands."""
+    """Release related commands."""
 
     obj['issue_tracker'] = IssueTracker(github_token=github_token)
     obj['repo'] = src.path
@@ -98,7 +98,7 @@ def release_changelog_generate(obj, version, output):
 @release_changelog.command('regenerate')
 @click.pass_obj
 def release_changelog_regenerate(obj):
-    """Regeneretate the whole CHANGELOG.md file"""
+    """Regenerate the whole CHANGELOG.md file"""
     issue_tracker, repo = obj['issue_tracker'], obj['repo']
     changelogs = []
     issue_tracker = IssueTracker(issue_tracker=issue_tracker)
diff --git a/dev/archery/archery/release/core.py b/dev/archery/archery/release/core.py
index e08f52baa2..d6eab45e18 100644
--- a/dev/archery/archery/release/core.py
+++ b/dev/archery/archery/release/core.py
@@ -468,7 +468,7 @@ class Release:
                 parquet.append((self.jira_instance.issue(c.issue), c))
             else:
                 warnings.warn(
-                    f'Issue {c.issue} is not MINOR nor pertains to GH' +
+                    f'Issue {c.issue} does not pertain to GH' +
                     ', ARROW or PARQUET')
                 outside.append((c.issue, c))
 
diff --git a/dev/archery/archery/tests/fixtures/event-issue-comment-build-command.json b/dev/archery/archery/tests/fixtures/event-issue-comment-build-command.json
index d591105f07..2ff052966d 100644
--- a/dev/archery/archery/tests/fixtures/event-issue-comment-build-command.json
+++ b/dev/archery/archery/tests/fixtures/event-issue-comment-build-command.json
@@ -57,7 +57,7 @@
         },
         "repository_url": "https://api.github.com/repos/ursa-labs/ursabot",
         "state": "open",
-        "title": "Unittests for GithubHook",
+        "title": "Unittests for GitHubHook",
         "updated_at": "2019-04-05T11:55:43Z",
         "url": "https://api.github.com/repos/ursa-labs/ursabot/issues/26",
         "user": {
diff --git a/dev/archery/archery/tests/fixtures/event-issue-comment-by-non-authorized-user.json b/dev/archery/archery/tests/fixtures/event-issue-comment-by-non-authorized-user.json
index 5a8f3461c0..7b29d7316b 100644
--- a/dev/archery/archery/tests/fixtures/event-issue-comment-by-non-authorized-user.json
+++ b/dev/archery/archery/tests/fixtures/event-issue-comment-by-non-authorized-user.json
@@ -57,7 +57,7 @@
         },
         "repository_url": "https://api.github.com/repos/ursa-labs/ursabot",
         "state": "open",
-        "title": "Unittests for GithubHook",
+        "title": "Unittests for GitHubHook",
         "updated_at": "2019-04-05T11:35:47Z",
         "url": "https://api.github.com/repos/ursa-labs/ursabot/issues/26",
         "user": {
diff --git a/dev/archery/archery/tests/fixtures/event-issue-comment-by-ursabot.json b/dev/archery/archery/tests/fixtures/event-issue-comment-by-ursabot.json
index bfb7210df8..419a068c5d 100644
--- a/dev/archery/archery/tests/fixtures/event-issue-comment-by-ursabot.json
+++ b/dev/archery/archery/tests/fixtures/event-issue-comment-by-ursabot.json
@@ -57,7 +57,7 @@
         },
         "repository_url": "https://api.github.com/repos/ursa-labs/ursabot",
         "state": "open",
-        "title": "Unittests for GithubHook",
+        "title": "Unittests for GitHubHook",
         "updated_at": "2019-04-05T11:35:47Z",
         "url": "https://api.github.com/repos/ursa-labs/ursabot/issues/26",
         "user": {
diff --git a/dev/archery/archery/tests/fixtures/event-issue-comment-not-mentioning-ursabot.json b/dev/archery/archery/tests/fixtures/event-issue-comment-not-mentioning-ursabot.json
index a3d450078a..39b4895cd0 100644
--- a/dev/archery/archery/tests/fixtures/event-issue-comment-not-mentioning-ursabot.json
+++ b/dev/archery/archery/tests/fixtures/event-issue-comment-not-mentioning-ursabot.json
@@ -57,7 +57,7 @@
         },
         "repository_url": "https://api.github.com/repos/ursa-labs/ursabot",
         "state": "open",
-        "title": "Unittests for GithubHook",
+        "title": "Unittests for GitHubHook",
         "updated_at": "2019-04-05T11:26:56Z",
         "url": "https://api.github.com/repos/ursa-labs/ursabot/issues/26",
         "user": {
diff --git a/dev/archery/archery/tests/fixtures/event-issue-comment-with-empty-command.json b/dev/archery/archery/tests/fixtures/event-issue-comment-with-empty-command.json
index c88197c8e0..7022a4315f 100644
--- a/dev/archery/archery/tests/fixtures/event-issue-comment-with-empty-command.json
+++ b/dev/archery/archery/tests/fixtures/event-issue-comment-with-empty-command.json
@@ -62,7 +62,7 @@
         },
         "repository_url": "https://api.github.com/repos/ursa-labs/ursabot",
         "state": "open",
-        "title": "Unittests for GithubHook",
+        "title": "Unittests for GitHubHook",
         "updated_at": "2019-04-05T11:35:46Z",
         "url": "https://api.github.com/repos/ursa-labs/ursabot/issues/26",
         "user": {
diff --git a/dev/archery/archery/tests/fixtures/event-pr-review-committer.json b/dev/archery/archery/tests/fixtures/event-pr-review-committer.json
index 0022ced8a4..9c02e373cb 100644
--- a/dev/archery/archery/tests/fixtures/event-pr-review-committer.json
+++ b/dev/archery/archery/tests/fixtures/event-pr-review-committer.json
@@ -12,7 +12,7 @@
      "number": 26,
      "state": "open",
      "locked": false,
-     "title": "Unittests for GithubHook",
+     "title": "Unittests for GitHubHook",
      "user": {
        "login": "kszucs",
        "id": 961747,
diff --git a/dev/archery/archery/tests/fixtures/event-pr-review-non-committer.json b/dev/archery/archery/tests/fixtures/event-pr-review-non-committer.json
index 8f305ff0a2..5ef1b20c78 100644
--- a/dev/archery/archery/tests/fixtures/event-pr-review-non-committer.json
+++ b/dev/archery/archery/tests/fixtures/event-pr-review-non-committer.json
@@ -12,7 +12,7 @@
       "number": 26,
       "state": "open",
       "locked": false,
-      "title": "Unittests for GithubHook",
+      "title": "Unittests for GitHubHook",
       "user": {
         "login": "kszucs",
         "id": 961747,
diff --git a/dev/archery/archery/tests/fixtures/event-pull-request-opened.json b/dev/archery/archery/tests/fixtures/event-pull-request-opened.json
index 9cf5c0dda7..19f37de7bc 100644
--- a/dev/archery/archery/tests/fixtures/event-pull-request-opened.json
+++ b/dev/archery/archery/tests/fixtures/event-pull-request-opened.json
@@ -12,7 +12,7 @@
     "number": 26,
     "state": "open",
     "locked": false,
-    "title": "Unittests for GithubHook",
+    "title": "Unittests for GitHubHook",
     "user": {
       "login": "kszucs",
       "id": 961747,
diff --git a/dev/archery/archery/tests/fixtures/event-pull-request-target-opened-committer.json b/dev/archery/archery/tests/fixtures/event-pull-request-target-opened-committer.json
index 67a4836c76..0a780c3ab0 100644
--- a/dev/archery/archery/tests/fixtures/event-pull-request-target-opened-committer.json
+++ b/dev/archery/archery/tests/fixtures/event-pull-request-target-opened-committer.json
@@ -26,7 +26,7 @@
         "number": 26,
         "state": "open",
         "locked": false,
-        "title": "Unittests for GithubHook",
+        "title": "Unittests for GitHubHook",
         "user": {
           "login": "kszucs",
           "id": 961747,
diff --git a/dev/archery/archery/tests/fixtures/event-pull-request-target-opened-non-committer.json b/dev/archery/archery/tests/fixtures/event-pull-request-target-opened-non-committer.json
index 6f4db37ccb..97d0fe0926 100644
--- a/dev/archery/archery/tests/fixtures/event-pull-request-target-opened-non-committer.json
+++ b/dev/archery/archery/tests/fixtures/event-pull-request-target-opened-non-committer.json
@@ -26,7 +26,7 @@
       "number": 26,
       "state": "open",
       "locked": false,
-      "title": "Unittests for GithubHook",
+      "title": "Unittests for GitHubHook",
       "user": {
         "login": "kszucs",
         "id": 961747,
diff --git a/dev/archery/archery/tests/fixtures/event-pull-request-target-synchronize.json b/dev/archery/archery/tests/fixtures/event-pull-request-target-synchronize.json
index e7e7055e96..1be6bfe0ac 100644
--- a/dev/archery/archery/tests/fixtures/event-pull-request-target-synchronize.json
+++ b/dev/archery/archery/tests/fixtures/event-pull-request-target-synchronize.json
@@ -28,7 +28,7 @@
       "number": 26,
       "state": "open",
       "locked": false,
-      "title": "Unittests for GithubHook",
+      "title": "Unittests for GitHubHook",
       "user": {
         "login": "kszucs",
         "id": 961747,
diff --git a/dev/archery/archery/tests/fixtures/issue-26.json b/dev/archery/archery/tests/fixtures/issue-26.json
index 44c4d3bede..7f7bf53797 100644
--- a/dev/archery/archery/tests/fixtures/issue-26.json
+++ b/dev/archery/archery/tests/fixtures/issue-26.json
@@ -8,7 +8,7 @@
     "id": 429706959,
     "node_id": "MDExOlB1bGxSZXF1ZXN0MjY3Nzg1NTUy",
     "number": 26,
-    "title": "Unittests for GithubHook + native asyncio syntax",
+    "title": "Unittests for GitHubHook + native asyncio syntax",
     "user": {
         "login": "kszucs",
         "id": 961747,
@@ -46,7 +46,7 @@
         "diff_url": "https://github.com/ursa-labs/ursabot/pull/26.diff",
         "patch_url": "https://github.com/ursa-labs/ursabot/pull/26.patch"
     },
-    "body": "Resolves:\r\n- #26 Unittests for GithubHook + native asyncio syntax\r\n- #27 Use native async/await keywords instead of @inlineCallbacks and yield\r\n",
+    "body": "Resolves:\r\n- #26 Unittests for GitHubHook + native asyncio syntax\r\n- #27 Use native async/await keywords instead of @inlineCallbacks and yield\r\n",
     "closed_by": {
         "login": "kszucs",
         "id": 961747,
diff --git a/dev/archery/archery/tests/fixtures/pull-request-26-awaiting-review.json b/dev/archery/archery/tests/fixtures/pull-request-26-awaiting-review.json
index d295afb396..b5805ec8c4 100644
--- a/dev/archery/archery/tests/fixtures/pull-request-26-awaiting-review.json
+++ b/dev/archery/archery/tests/fixtures/pull-request-26-awaiting-review.json
@@ -9,7 +9,7 @@
   "number": 26,
   "state": "open",
   "locked": false,
-  "title": "Unittests for GithubHook",
+  "title": "Unittests for GitHubHook",
   "user": {
     "login": "kszucs",
     "id": 961747,
diff --git a/dev/archery/archery/tests/fixtures/pull-request-26-commit.json b/dev/archery/archery/tests/fixtures/pull-request-26-commit.json
index ffc48943a6..b5f92ccf53 100644
--- a/dev/archery/archery/tests/fixtures/pull-request-26-commit.json
+++ b/dev/archery/archery/tests/fixtures/pull-request-26-commit.json
@@ -92,7 +92,7 @@
       "blob_url": "https://github.com/ursa-labs/ursabot/blob/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/fixtures/issue-comment-build-command.json",
       "raw_url": "https://github.com/ursa-labs/ursabot/raw/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/fixtures/issue-comment-build-command.json",
       "contents_url": "https://api.github.com/repos/ursa-labs/ursabot/contents/ursabot/tests/fixtures/issue-comment-build-command.json?ref=2705da2b616b98fa6010a25813c5a7a27456f71d",
-      "patch": "@@ -0,0 +1,212 @@\n+{\n+    \"action\": \"created\",\n+    \"comment\": {\n+        \"author_association\": \"NONE\",\n+        \"body\": \"I've successfully started builds for this PR\",\n+        \"created_at\": \"2019-04-05T11:55:44Z\",\n+        \"html_url\": \"https://github.com/ursa-labs/ursabot/pull/26#issuecomment-480248730\",\n+        \"id\": 480248730,\n+        \"issue_url\": \"https://api.github.com/repos/ursa-labs/ursabot/issues/26\",\n+        \"node_id\":  [...]
+      "patch": "@@ -0,0 +1,212 @@\n+{\n+    \"action\": \"created\",\n+    \"comment\": {\n+        \"author_association\": \"NONE\",\n+        \"body\": \"I've successfully started builds for this PR\",\n+        \"created_at\": \"2019-04-05T11:55:44Z\",\n+        \"html_url\": \"https://github.com/ursa-labs/ursabot/pull/26#issuecomment-480248730\",\n+        \"id\": 480248730,\n+        \"issue_url\": \"https://api.github.com/repos/ursa-labs/ursabot/issues/26\",\n+        \"node_id\":  [...]
     },
     {
       "sha": "7ef554e333327f0e62aa1fd76b4b17844a39adeb",
@@ -104,7 +104,7 @@
       "blob_url": "https://github.com/ursa-labs/ursabot/blob/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/fixtures/issue-comment-by-ursabot.json",
       "raw_url": "https://github.com/ursa-labs/ursabot/raw/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/fixtures/issue-comment-by-ursabot.json",
       "contents_url": "https://api.github.com/repos/ursa-labs/ursabot/contents/ursabot/tests/fixtures/issue-comment-by-ursabot.json?ref=2705da2b616b98fa6010a25813c5a7a27456f71d",
-      "patch": "@@ -0,0 +1,212 @@\n+{\n+    \"action\": \"created\",\n+    \"comment\": {\n+        \"author_association\": \"NONE\",\n+        \"body\": \"Unknown command \\\"\\\"\",\n+        \"created_at\": \"2019-04-05T11:35:47Z\",\n+        \"html_url\": \"https://github.com/ursa-labs/ursabot/pull/26#issuecomment-480243815\",\n+        \"id\": 480243815,\n+        \"issue_url\": \"https://api.github.com/repos/ursa-labs/ursabot/issues/26\",\n+        \"node_id\": \"MDEyOklzc3VlQ29tbW [...]
+      "patch": "@@ -0,0 +1,212 @@\n+{\n+    \"action\": \"created\",\n+    \"comment\": {\n+        \"author_association\": \"NONE\",\n+        \"body\": \"Unknown command \\\"\\\"\",\n+        \"created_at\": \"2019-04-05T11:35:47Z\",\n+        \"html_url\": \"https://github.com/ursa-labs/ursabot/pull/26#issuecomment-480243815\",\n+        \"id\": 480243815,\n+        \"issue_url\": \"https://api.github.com/repos/ursa-labs/ursabot/issues/26\",\n+        \"node_id\": \"MDEyOklzc3VlQ29tbW [...]
     },
     {
       "sha": "a8082dbc91fdfe815b795e49ec10e49000771ef5",
@@ -116,7 +116,7 @@
       "blob_url": "https://github.com/ursa-labs/ursabot/blob/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/fixtures/issue-comment-not-mentioning-ursabot.json",
       "raw_url": "https://github.com/ursa-labs/ursabot/raw/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/fixtures/issue-comment-not-mentioning-ursabot.json",
       "contents_url": "https://api.github.com/repos/ursa-labs/ursabot/contents/ursabot/tests/fixtures/issue-comment-not-mentioning-ursabot.json?ref=2705da2b616b98fa6010a25813c5a7a27456f71d",
-      "patch": "@@ -0,0 +1,212 @@\n+{\n+    \"action\": \"created\",\n+    \"comment\": {\n+        \"author_association\": \"MEMBER\",\n+        \"body\": \"bear is no game\",\n+        \"created_at\": \"2019-04-05T11:26:56Z\",\n+        \"html_url\": \"https://github.com/ursa-labs/ursabot/pull/26#issuecomment-480241727\",\n+        \"id\": 480241727,\n+        \"issue_url\": \"https://api.github.com/repos/ursa-labs/ursabot/issues/26\",\n+        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDQ4M [...]
+      "patch": "@@ -0,0 +1,212 @@\n+{\n+    \"action\": \"created\",\n+    \"comment\": {\n+        \"author_association\": \"MEMBER\",\n+        \"body\": \"bear is no game\",\n+        \"created_at\": \"2019-04-05T11:26:56Z\",\n+        \"html_url\": \"https://github.com/ursa-labs/ursabot/pull/26#issuecomment-480241727\",\n+        \"id\": 480241727,\n+        \"issue_url\": \"https://api.github.com/repos/ursa-labs/ursabot/issues/26\",\n+        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDQ4M [...]
     },
     {
       "sha": "2770e29ba9086394455315e590c0b433d08e437e",
@@ -128,7 +128,7 @@
       "blob_url": "https://github.com/ursa-labs/ursabot/blob/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/fixtures/issue-comment-with-empty-command.json",
       "raw_url": "https://github.com/ursa-labs/ursabot/raw/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/fixtures/issue-comment-with-empty-command.json",
       "contents_url": "https://api.github.com/repos/ursa-labs/ursabot/contents/ursabot/tests/fixtures/issue-comment-with-empty-command.json?ref=2705da2b616b98fa6010a25813c5a7a27456f71d",
-      "patch": "@@ -0,0 +1,212 @@\n+{\n+    \"action\": \"created\",\n+    \"comment\": {\n+        \"author_association\": \"MEMBER\",\n+        \"body\": \"@ursabot \",\n+        \"created_at\": \"2019-04-05T11:35:46Z\",\n+        \"html_url\": \"https://github.com/ursa-labs/ursabot/pull/26#issuecomment-480243811\",\n+        \"id\": 480243811,\n+        \"issue_url\": \"https://api.github.com/repos/ursa-labs/ursabot/issues/26\",\n+        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDQ4MDI0Mzg [...]
+      "patch": "@@ -0,0 +1,212 @@\n+{\n+    \"action\": \"created\",\n+    \"comment\": {\n+        \"author_association\": \"MEMBER\",\n+        \"body\": \"@ursabot \",\n+        \"created_at\": \"2019-04-05T11:35:46Z\",\n+        \"html_url\": \"https://github.com/ursa-labs/ursabot/pull/26#issuecomment-480243811\",\n+        \"id\": 480243811,\n+        \"issue_url\": \"https://api.github.com/repos/ursa-labs/ursabot/issues/26\",\n+        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDQ4MDI0Mzg [...]
     },
     {
       "sha": "80ff46510a2f39ae60f7c3a98e5fdaef8e688784",
@@ -152,7 +152,7 @@
       "blob_url": "https://github.com/ursa-labs/ursabot/blob/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/test_hooks.py",
       "raw_url": "https://github.com/ursa-labs/ursabot/raw/2705da2b616b98fa6010a25813c5a7a27456f71d/ursabot/tests/test_hooks.py",
       "contents_url": "https://api.github.com/repos/ursa-labs/ursabot/contents/ursabot/tests/test_hooks.py?ref=2705da2b616b98fa6010a25813c5a7a27456f71d",
-      "patch": "@@ -54,7 +54,7 @@ class TestGithubHook(ChangeHookTestCase):\n         await self.request('ping', {})\n         assert len(self.hook.master.data.updates.changesAdded) == 0\n \n-    @ensure_deferred\n-    async def test_issue_comment(self):\n-        payload = {}\n-        await self.request('issue_comment', payload)\n+    # @ensure_deferred\n+    # async def test_issue_comment(self):\n+    #     payload = {}\n+    #     await self.request('issue_comment', payload)"
+      "patch": "@@ -54,7 +54,7 @@ class TestGitHubHook(ChangeHookTestCase):\n         await self.request('ping', {})\n         assert len(self.hook.master.data.updates.changesAdded) == 0\n \n-    @ensure_deferred\n-    async def test_issue_comment(self):\n-        payload = {}\n-        await self.request('issue_comment', payload)\n+    # @ensure_deferred\n+    # async def test_issue_comment(self):\n+    #     payload = {}\n+    #     await self.request('issue_comment', payload)"
     }
   ]
 }
\ No newline at end of file
diff --git a/dev/archery/archery/tests/fixtures/pull-request-26.json b/dev/archery/archery/tests/fixtures/pull-request-26.json
index d295afb396..b5805ec8c4 100644
--- a/dev/archery/archery/tests/fixtures/pull-request-26.json
+++ b/dev/archery/archery/tests/fixtures/pull-request-26.json
@@ -9,7 +9,7 @@
   "number": 26,
   "state": "open",
   "locked": false,
-  "title": "Unittests for GithubHook",
+  "title": "Unittests for GitHubHook",
   "user": {
     "login": "kszucs",
     "id": 961747,
diff --git a/dev/archery/archery/tests/test_bot.py b/dev/archery/archery/tests/test_bot.py
index b5de2dfd21..5d32cdfd9a 100644
--- a/dev/archery/archery/tests/test_bot.py
+++ b/dev/archery/archery/tests/test_bot.py
@@ -103,7 +103,7 @@ def test_noop_events(load_fixture, fixture_name):
     handler.assert_not_called()
 
 
-def test_unathorized_user_comment(load_fixture, responses):
+def test_unauthorized_user_comment(load_fixture, responses):
     responses.add(
         responses.GET,
         github_url('/repositories/169101701/issues/26'),
diff --git a/dev/conbench_envs/README.md b/dev/conbench_envs/README.md
index 5a4eb58b24..509dc5c0c9 100644
--- a/dev/conbench_envs/README.md
+++ b/dev/conbench_envs/README.md
@@ -35,7 +35,7 @@ Benchmark builds use `hooks.sh` functions as hooks to create conda env with Arro
 
 Defining hooks in Arrow repo allows benchmark builds for a specific commit to be
 compatible with the files/scripts *in that commit* which are used for installing Arrow
-dependencies and building Arrow. This allows Arrow contributors to asses the perfomance
+dependencies and building Arrow. This allows Arrow contributors to asses the performance
 implications of different build options, dependency versions, etc by updating
 `hooks.sh`.
 
diff --git a/dev/merge_arrow_pr.py b/dev/merge_arrow_pr.py
index 0f36a5ba90..ae482d6901 100755
--- a/dev/merge_arrow_pr.py
+++ b/dev/merge_arrow_pr.py
@@ -447,7 +447,7 @@ class GitHubAPI(object):
         response = requests.get(url, headers=self.headers)
         labels = response.json()
         for label in labels:
-            # All PR workflow state labes starts with "awaiting"
+            # All PR workflow state labels starts with "awaiting"
             if label['name'].startswith('awaiting'):
                 label_url = f"{url}/{label['name']}"
                 requests.delete(label_url, headers=self.headers)
diff --git a/dev/tasks/conda-recipes/README.md b/dev/tasks/conda-recipes/README.md
index fc40733249..bb083c3ef0 100644
--- a/dev/tasks/conda-recipes/README.md
+++ b/dev/tasks/conda-recipes/README.md
@@ -19,7 +19,7 @@
 
 # Conda Forge recipes
 
-This directory must be migrated periodically with the upstrem updates of
+This directory must be migrated periodically with the upstream updates of
 [arrow-cpp-feedstock][arrow-cpp-feedstock],
 [parquet-cpp-feedstock][parquet-cpp-feedstock].
 conda-forge repositories because of multiple vendored files.
diff --git a/dev/tasks/conda-recipes/arrow-cpp/meta.yaml b/dev/tasks/conda-recipes/arrow-cpp/meta.yaml
index 371b62245b..b8ffbfdb71 100644
--- a/dev/tasks/conda-recipes/arrow-cpp/meta.yaml
+++ b/dev/tasks/conda-recipes/arrow-cpp/meta.yaml
@@ -1,4 +1,4 @@
-# NOTE: In constrast to the conda-forge recipe, ARROW_VERSION is a templated variable here.
+# NOTE: In contrast to the conda-forge recipe, ARROW_VERSION is a templated variable here.
 {% set version = ARROW_VERSION %}
 {% set cuda_enabled = cuda_compiler_version != "None" %}
 {% set build_ext_version = ARROW_VERSION %}
diff --git a/dev/tasks/java-jars/README.md b/dev/tasks/java-jars/README.md
index 758f74c95f..216c7198d3 100644
--- a/dev/tasks/java-jars/README.md
+++ b/dev/tasks/java-jars/README.md
@@ -20,7 +20,7 @@ limitations under the License.
 
 This directory is responsible to generate the jar files for the Arrow components that depend on C++ shared libraries to execute.
 
-The Arrow C++ libraries are compiled both on MacOS and Linux distributions, with their dependencies linked statically, and they are added
+The Arrow C++ libraries are compiled both on macOS and Linux distributions, with their dependencies linked statically, and they are added
 in the jars at the end, so the file can be used on both systems.
 
 ## Linux Docker Image
diff --git a/dev/tasks/linux-packages/apache-arrow-release/Rakefile b/dev/tasks/linux-packages/apache-arrow-release/Rakefile
index dc2411f0de..896e4adf46 100644
--- a/dev/tasks/linux-packages/apache-arrow-release/Rakefile
+++ b/dev/tasks/linux-packages/apache-arrow-release/Rakefile
@@ -54,7 +54,7 @@ class ApacheArrowReleasePackageTask < PackageTask
           # It seems that a subkey of this key may be related.
           "B90EB64A3AF15545EC8A7B8803F0D5EA3790810C",
         ]
-        is_denyed_key = false
+        is_denied_key = false
         keys.each_line do |line|
           case line.chomp
           when /\Apub\s+ed25519\s/
@@ -63,13 +63,13 @@ class ApacheArrowReleasePackageTask < PackageTask
           when /\Apub\s+[^\/]+\/([\h]+)\s/
             short_finger_print = $1
             if deny_lists.include?(short_finger_print)
-              is_denyed_key = true
+              is_denied_key = true
               next
             end
           when /\A\s+([\h]+)$/
             long_finger_print = $1
             if deny_lists.include?(long_finger_print)
-              is_denyed_key = true
+              is_denied_key = true
               next
             end
           when "-----END PGP PUBLIC KEY BLOCK-----"
@@ -77,13 +77,13 @@ class ApacheArrowReleasePackageTask < PackageTask
               is_ed25519_key = false
               next
             end
-            if is_denyed_key
-              is_denyed_key = false
+            if is_denied_key
+              is_denied_key = false
               next
             end
           else
             next if is_ed25519_key
-            next if is_denyed_key
+            next if is_denied_key
           end
           keys_file.print(line)
         end
diff --git a/dev/tasks/macros.jinja b/dev/tasks/macros.jinja
index 9ee95dec15..8ba95af46a 100644
--- a/dev/tasks/macros.jinja
+++ b/dev/tasks/macros.jinja
@@ -237,7 +237,7 @@ on:
       brew config
       brew doctor || true
       # The GHA runners install of python > 3.10 is incompatible with brew so we
-      # have to force overwritting of the symlinks
+      # have to force overwriting of the symlinks
       # see https://github.com/actions/runner-images/issues/6868
       brew install --overwrite python@3.11 python@3.10
 
diff --git a/dev/tasks/python-wheels/github.osx.arm64.yml b/dev/tasks/python-wheels/github.osx.arm64.yml
index c217f5901b..35d74f1462 100644
--- a/dev/tasks/python-wheels/github.osx.arm64.yml
+++ b/dev/tasks/python-wheels/github.osx.arm64.yml
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# Prerequisits on the host:
+# Prerequisites on the host:
 # - brew install bash bison coreutils ninja cmake
 # - sudo arrow/ci/scripts/install_python.sh macos 3.9
 
diff --git a/dev/tasks/r/github.macos-linux.local.yml b/dev/tasks/r/github.macos-linux.local.yml
index c65eb79f61..8bce057059 100644
--- a/dev/tasks/r/github.macos-linux.local.yml
+++ b/dev/tasks/r/github.macos-linux.local.yml
@@ -41,7 +41,7 @@ jobs:
         if: contains(matrix.os, 'macOS')
         run: |
           brew install openssl
-          # disable sccache on macos as it timesout for unknown reasons
+          # disable sccache on macos as it times out for unknown reasons
           # see GH-33721
           # brew install sccache
       - name: Configure dependencies (linux)
diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
index 3572c4e02c..84c3cad6ac 100644
--- a/dev/tasks/tasks.yml
+++ b/dev/tasks/tasks.yml
@@ -17,7 +17,7 @@
 
 groups:
   # these groups are just for convenience
-  # makes it easier to submit related taskshttps://github.com/github/release-radar
+  # makes it easier to submit related tasks https://github.com/github/release-radar
 
 {############################# Packaging tasks ###############################}
 
diff --git a/dev/tasks/vcpkg-tests/github.windows.yml b/dev/tasks/vcpkg-tests/github.windows.yml
index 093ae3fc53..618c997c25 100644
--- a/dev/tasks/vcpkg-tests/github.windows.yml
+++ b/dev/tasks/vcpkg-tests/github.windows.yml
@@ -41,7 +41,7 @@ jobs:
         shell: bash
         run: arrow/ci/scripts/download_tz_database.sh
       - name: Remove and Reinstall vcpkg
-        # When running vcpkg in Github Actions on Windows, remove the
+        # When running vcpkg in GitHub Actions on Windows, remove the
         # preinstalled vcpkg and install the newest version from source.
         # Versions of vcpkg rapidly stop working until updated, and
         # the safest and most reliable way to update vcpkg is simply