summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorDirk Gouders <dirk@gouders.net>2024-03-27 11:22:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2024-03-27 16:24:34 (GMT)
commit34e0b72b198a90a92f5b19b989bc8f0c7bfef148 (patch)
tree45c5868f403e3daa670c8df727c05f590da84bd7 /Documentation
parentd08a189ce29285b3618b65bbeae5b3780d8c0621 (diff)
downloadgit-34e0b72b198a90a92f5b19b989bc8f0c7bfef148.zip
git-34e0b72b198a90a92f5b19b989bc8f0c7bfef148.tar.gz
git-34e0b72b198a90a92f5b19b989bc8f0c7bfef148.tar.bz2
MyFirstObjectWalk: fix misspelled "builtins/"
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>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/MyFirstObjectWalk.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/MyFirstObjectWalk.txt b/Documentation/MyFirstObjectWalk.txt
index cceac2d..c33d22a 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