api-argv-array.txt: remove broken link to string-list API
In 4f665f2cf3 (string-list.h: move documentation from Documentation/api/ into header, 2017-09-26) the string-list API documentation was moved to string-list.h. The argv-array API documentation may follow a similar course in the future. Until then, prevent the broken link from making it to the end-user documentation. Signed-off-by: Todd Zullinger <tmz@pobox.com> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Todd Zullinger committed
Oct 5, 2017 at 23:14 UTC
204f6d69873a7a9009579a69682bfcae313af666
1 file changed
+1
-1
Documentation/technical/api-argv-array.txt
+1
-1
@@ -8,7 +8,7 @@ always NULL-terminated at the element pointed to by `argv[argc]`. This
8
makes the result suitable for passing to functions expecting to receive
9
argv from main(), or the link:api-run-command.html[run-command API].
10
11
-The link:api-string-list.html[string-list API] is similar, but cannot be
11
+The string-list API (documented in string-list.h) is similar, but cannot be
12
used for these purposes; instead of storing a straight string pointer,
13
it contains an item structure with a `util` field that is not compatible
14
with the traditional argv interface.