diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-06-26 15:07:48 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-26 15:07:48 -0700 |
commit | 2ddc898bc0d0c3f03b4aeeb34c33f652d95f2807 (patch) | |
tree | f465d150b6bef7a8e4e9553ba5d69936ab0307e1 /Documentation/technical | |
parent | Merge branch 'mm/merge-in-dirty-worktree-doc' (diff) | |
parent | fix "builtin-*" references to be "builtin/*" (diff) | |
download | tgif-2ddc898bc0d0c3f03b4aeeb34c33f652d95f2807.tar.xz |
Merge branch 'ph/builtin-srcs-are-in-subdir-these-days'
* ph/builtin-srcs-are-in-subdir-these-days:
fix "builtin-*" references to be "builtin/*"
Diffstat (limited to 'Documentation/technical')
-rw-r--r-- | Documentation/technical/api-builtin.txt | 2 | ||||
-rw-r--r-- | Documentation/technical/api-parse-options.txt | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Documentation/technical/api-builtin.txt b/Documentation/technical/api-builtin.txt index 4a4228b896..f3c1357b7c 100644 --- a/Documentation/technical/api-builtin.txt +++ b/Documentation/technical/api-builtin.txt @@ -39,7 +39,7 @@ where options is the bitwise-or of: on bare repositories. This only makes sense when `RUN_SETUP` is also set. -. Add `builtin-foo.o` to `BUILTIN_OBJS` in `Makefile`. +. Add `builtin/foo.o` to `BUILTIN_OBJS` in `Makefile`. Additionally, if `foo` is a new command, there are 3 more things to do: diff --git a/Documentation/technical/api-parse-options.txt b/Documentation/technical/api-parse-options.txt index 1317db4d6c..0be2b5159f 100644 --- a/Documentation/technical/api-parse-options.txt +++ b/Documentation/technical/api-parse-options.txt @@ -275,10 +275,10 @@ Examples -------- See `test-parse-options.c` and -`builtin-add.c`, -`builtin-clone.c`, -`builtin-commit.c`, -`builtin-fetch.c`, -`builtin-fsck.c`, -`builtin-rm.c` +`builtin/add.c`, +`builtin/clone.c`, +`builtin/commit.c`, +`builtin/fetch.c`, +`builtin/fsck.c`, +`builtin/rm.c` for real-world examples. |