docs: fix index param for getdns_list_set_xxx

the second parameter for these 4 functions is an index, not a name
(looks like cut'n'paste from getdns_dict_set_xxx)
This commit is contained in:
Anthony Kirby 2015-05-19 15:17:00 +01:00
parent 7c0268b42c
commit 198e8baf69
1 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ getdns_return_t
.B getdns_list_set_bindata
(getdns_list *this_list,
.RS 3
char *name,
size_t index,
.br
getdns_bindata *child_bindata)
.RE
@ -56,7 +56,7 @@ getdns_return_t
.B getdns_list_set_dict
(getdns_list *this_list,
.RS 3
char *name,
size_t index,
.br
getdns_dict *child_dict)
.RE
@ -66,7 +66,7 @@ getdns_return_t
.B getdns_list_set_int
(getdns_list *this_list,
.RS 3
char *name,
size_t index,
.br
uint32_t child_uint32_t)
.RE
@ -76,7 +76,7 @@ getdns_return_t
.B getdns_list_set_list
(getdns_list *this_list,
.RS 3
char *name,
size_t index,
.br
getdns_list *child_list)
.RE