From 761e7e3b11a0b1922248bf19f80070620fee8894 Mon Sep 17 00:00:00 2001 From: Andrew Kreimer Date: Tue, 18 Mar 2025 15:12:05 +0200 Subject: [PATCH] Fix a typo There is a typo in bisect section: show -> shows, fix it. --- book/07-git-tools/sections/debugging.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/07-git-tools/sections/debugging.asc b/book/07-git-tools/sections/debugging.asc index bc9d4cad8..dd615c1c7 100644 --- a/book/07-git-tools/sections/debugging.asc +++ b/book/07-git-tools/sections/debugging.asc @@ -111,7 +111,7 @@ Bisecting: 1 revisions left to test after this ---- This commit is fine, and now Git has all the information it needs to determine where the issue was introduced. -It tells you the SHA-1 of the first bad commit and show some of the commit information and which files were modified in that commit so you can figure out what happened that may have introduced this bug: +It tells you the SHA-1 of the first bad commit and shows some of the commit information and which files were modified in that commit so you can figure out what happened that may have introduced this bug: [source,console] ----