From e607fc88a1d5c62d74e7abb2ebdbf892d75c93f5 Mon Sep 17 00:00:00 2001 From: John Sundh Date: Sun, 19 Nov 2023 22:23:45 +0100 Subject: [PATCH] Minor spell fix --- pages/git/git-9-extra-material.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/git/git-9-extra-material.md b/pages/git/git-9-extra-material.md index b9b18c32..64b5b01c 100644 --- a/pages/git/git-9-extra-material.md +++ b/pages/git/git-9-extra-material.md @@ -199,7 +199,7 @@ what the output of the `git reflog` command might show: 8c80c88 HEAD@{4}: checkout: moving from main to feature-branch ``` -It show the most recent change at the top, notified by `HEAD@{0}`. We thus have +It shows the most recent change at the top, notified by `HEAD@{0}`. We thus have a merging of `feature-branch` into `main`, a checkout into `main`, two commits on `feature-branch` and a checkout into `feature-branch` - reading it backwards we get a chronological log of what has happened.