From 28580ff7d3e508eee9c2c1f154f15f4027360089 Mon Sep 17 00:00:00 2001 From: Hemant Kumar Meena Date: Fri, 2 Feb 2024 17:53:11 +0530 Subject: [PATCH] fixed typo in chapter 8 under core.pager There is a typo in chapter 8 under core.pager last line, it say 'Git will page'. The word 'page' should be replaced with the word 'print' Signed-off-by: Hemant Kumar Meena --- book/08-customizing-git/sections/config.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/08-customizing-git/sections/config.asc b/book/08-customizing-git/sections/config.asc index 7d5262b7a..16739692f 100644 --- a/book/08-customizing-git/sections/config.asc +++ b/book/08-customizing-git/sections/config.asc @@ -129,7 +129,7 @@ You can set it to `more` or to your favorite pager (by default, it's `less`), or $ git config --global core.pager '' ---- -If you run that, Git will page the entire output of all commands, no matter how long they are. +If you run that, Git will print the entire output of all commands, no matter how long they are. ===== `user.signingkey`