From 116c1a9ebcba2ed33cdb595ec05ae2df782eb8e8 Mon Sep 17 00:00:00 2001 From: happy-spark <107300540+happy-spark@users.noreply.github.com> Date: Tue, 3 Oct 2023 00:01:15 +0900 Subject: [PATCH] Fix typo (#28745) --- .../github-cli/github-cli/creating-github-cli-extensions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/github-cli/github-cli/creating-github-cli-extensions.md b/content/github-cli/github-cli/creating-github-cli-extensions.md index 5b8d609798..e907c38d54 100644 --- a/content/github-cli/github-cli/creating-github-cli-extensions.md +++ b/content/github-cli/github-cli/creating-github-cli-extensions.md @@ -162,9 +162,9 @@ For example, to create an issue programmatically, specify the title and body: gh issue create --title "My Title" --body "Issue description" ``` -### Fetching data programatically +### Fetching data programmatically -Many core commands support the `--json` flag for fetching data programatically. For example, to return a JSON object listing the number, title, and mergeability status of pull requests: +Many core commands support the `--json` flag for fetching data programmatically. For example, to return a JSON object listing the number, title, and mergeability status of pull requests: ```shell gh pr list --json number,title,mergeStateStatus