]> git.ipfire.org Git - thirdparty/git.git/commitdiff
MyFirstObjectWalk: fix misspelled "builtins/"
authorDirk Gouders <dirk@gouders.net>
Wed, 27 Mar 2024 11:22:13 +0000 (12:22 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 Mar 2024 16:24:34 +0000 (09:24 -0700)
pack-objects.c resides in builtin/ (not builtins/).

Fix the misspelled directory name.

Signed-off-by: Dirk Gouders <dirk@gouders.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/MyFirstObjectWalk.txt

index cceac2df952d5de8ea7e1588863eef4881b78f34..c33d22ae99b32ed925efd8191f1102c9ba87fa97 100644 (file)
@@ -525,7 +525,7 @@ about each one.
 
 We can base our work on an example. `git pack-objects` prepares all kinds of
 objects for packing into a bitmap or packfile. The work we are interested in
-resides in `builtins/pack-objects.c:get_object_list()`; examination of that
+resides in `builtin/pack-objects.c:get_object_list()`; examination of that
 function shows that the all-object walk is being performed by
 `traverse_commit_list()` or `traverse_commit_list_filtered()`. Those two
 functions reside in `list-objects.c`; examining the source shows that, despite