summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-10-11 05:52:22 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-10-11 05:52:22 (GMT)
commit4af0500a51ccda64dc9b3d462dd15e1435077735 (patch)
treee3151484719eeae85ed44d767d4108ba7e93a288
parentb03cd16613477d3f9ce2e82f3a9fdb5fa99a8b01 (diff)
parent204f6d69873a7a9009579a69682bfcae313af666 (diff)
downloadgit-4af0500a51ccda64dc9b3d462dd15e1435077735.zip
git-4af0500a51ccda64dc9b3d462dd15e1435077735.tar.gz
git-4af0500a51ccda64dc9b3d462dd15e1435077735.tar.bz2
Merge branch 'hn/string-list-doc'
Docfix. * hn/string-list-doc: api-argv-array.txt: remove broken link to string-list API
-rw-r--r--Documentation/technical/api-argv-array.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/technical/api-argv-array.txt b/Documentation/technical/api-argv-array.txt
index cfc0630..870c8ed 100644
--- a/Documentation/technical/api-argv-array.txt
+++ b/Documentation/technical/api-argv-array.txt
@@ -8,7 +8,7 @@ always NULL-terminated at the element pointed to by `argv[argc]`. This
makes the result suitable for passing to functions expecting to receive
argv from main(), or the link:api-run-command.html[run-command API].
-The link:api-string-list.html[string-list API] is similar, but cannot be
+The string-list API (documented in string-list.h) is similar, but cannot be
used for these purposes; instead of storing a straight string pointer,
it contains an item structure with a `util` field that is not compatible
with the traditional argv interface.