From: Dirk Gouders Date: Wed, 27 Mar 2024 11:22:13 +0000 (+0100) Subject: MyFirstObjectWalk: fix misspelled "builtins/" X-Git-Tag: v2.45.0-rc0~43^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=34e0b72b198a90a92f5b19b989bc8f0c7bfef148;p=thirdparty%2Fgit.git MyFirstObjectWalk: fix misspelled "builtins/" pack-objects.c resides in builtin/ (not builtins/). Fix the misspelled directory name. Signed-off-by: Dirk Gouders Signed-off-by: Junio C Hamano --- diff --git a/Documentation/MyFirstObjectWalk.txt b/Documentation/MyFirstObjectWalk.txt index cceac2df95..c33d22ae99 100644 --- a/Documentation/MyFirstObjectWalk.txt +++ b/Documentation/MyFirstObjectWalk.txt @@ -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