Skip to content

Commit

Permalink
fix(docs): repeated parameters docs improvement
Browse files Browse the repository at this point in the history
Previously, it said it would 'set' the property, which is not the case
after all.
  • Loading branch information
Byron committed Mar 17, 2015
1 parent 64219e7 commit 863a98c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/mako/lib/mbuild.mako
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 863a98c

Please sign in to comment.