From e9b668df3544dbd5edd9edb72d7de301d33d31b1 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 24 Apr 2024 08:40:00 +0100 Subject: [PATCH] docs/External-Commands: fix spelling. Co-authored-by: Kevin --- docs/External-Commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/External-Commands.md b/docs/External-Commands.md index 7823a0f5e9..8c58a0f4c4 100644 --- a/docs/External-Commands.md +++ b/docs/External-Commands.md @@ -60,7 +60,7 @@ To easily use Homebrew's argument parser, replicate the Ruby template below for - The class name should be the command name in CamelCase (e.g. `my-cmd` should be named `MyCmd`). - Provide a `cmd_args` block that describes the command and its arguments. -- Implement the `run` method, which will be invoked when the command is executed. Within the `run` method, the parsed arguments are available asusing `args`. +- Implement the `run` method, which will be invoked when the command is executed. Within the `run` method, the parsed arguments are available using `args`. ```ruby # frozen_string_literal: true