fix(docs): repeated parameters docs improvement

Previously, it said it would 'set' the property, which is not the case
after all.
This commit is contained in:
Sebastian Thiel
2015-03-17 17:34:33 +01:00
parent 64219e7e7e
commit 863a98c0d7

View File

@@ -192,7 +192,12 @@ ${self._setter_fn(resource, method, m, p, part_prop, ThisType, c)}\
part_desc = make_parts_desc(part_prop)
# end part description
%>\
% if is_repeated_property(p):
/// Append the given value to the *${split_camelcase_s(p.name)}* ${get_word(p, 'location')}property.
/// Each appended value will retain its original ordering and be '/'-separated in the URL's parameters.
% else:
/// Sets the *${split_camelcase_s(p.name)}* ${get_word(p, 'location')}property to the given value.
% endif
///
% if show_part_info(m, p):
/// Even though the *parts* list is automatically derived from *Resource* passed in