diff mbox series

doc: fix syntax error and the format of printf

Message ID pull.1029.git.1630141332149.gitgitgadget@gmail.com (mailing list archive)
State Accepted
Commit 73719bee8a42691f51dc46a507341104868848ba
Headers show
Series doc: fix syntax error and the format of printf | expand

Commit Message

Zoker Aug. 28, 2021, 9:02 a.m. UTC
From: Zoker <kaixuanguiqu@gmail.com>

Fix syntax and correct the format of printf in MyFirstObjectWalk.txt

Signed-off-by: Zoker <kaixuanguiqu@gmail.com>
---
    MyFirstObjectWalk: fix syntax error and the format of printf
    
    Fix the syntax of code hint and correct the format of printf in
    MyFirstObjectWalk.txt

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1029%2Fkesin%2Fcorrect-my-first-object-walk-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1029/kesin/correct-my-first-object-walk-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1029

 Documentation/MyFirstObjectWalk.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


base-commit: c4203212e360b25a1c69467b5a8437d45a373cac
diff mbox series

Patch

diff --git a/Documentation/MyFirstObjectWalk.txt b/Documentation/MyFirstObjectWalk.txt
index 2d10eea7a9f..45eb84d8b48 100644
--- a/Documentation/MyFirstObjectWalk.txt
+++ b/Documentation/MyFirstObjectWalk.txt
@@ -691,7 +691,7 @@  help understand. In our case, that means we omit trees and blobs not directly
 referenced by `HEAD` or `HEAD`'s history, because we begin the walk with only
 `HEAD` in the `pending` list.)
 
-First, we'll need to `#include "list-objects-filter-options.h`" and set up the
+First, we'll need to `#include "list-objects-filter-options.h"` and set up the
 `struct list_objects_filter_options` at the top of the function.
 
 ----
@@ -779,7 +779,7 @@  Count all the objects within and modify the print statement:
 	while ((oid = oidset_iter_next(&oit)))
 		omitted_count++;
 
-	printf("commits %d\nblobs %d\ntags %d\ntrees%d\nomitted %d\n",
+	printf("commits %d\nblobs %d\ntags %d\ntrees %d\nomitted %d\n",
 		commit_count, blob_count, tag_count, tree_count, omitted_count);
 ----