Skip to content

Commit

Permalink
fix(readme):improved markdown for library overview
Browse files Browse the repository at this point in the history
And names of free methods, which previously contained '.'. These are
now spaces.
  • Loading branch information
Byron committed Mar 20, 2015
1 parent bb75c5b commit 97da926
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/mako/lib/lib.mako
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ It seems there is nothing you can do here ... .
if sn in schemas:
md_resource = link(md_resource, schema_doc_format(schemas[sn]) % unique_type_name(sn))
%>\
* ${md_resource} (${put_and(md_methods)})
* ${md_resource}
* ${put_and(md_methods)}
% endfor ## each resource activity

% if METHODS_RESOURCE in c.rta_map:
Expand All @@ -100,7 +101,7 @@ ${method_type} supported by ...
% for m in methods:
<%
_, resource, method = activity_split(m.id)
name_parts = [split_camelcase_s(method)]
name_parts = [' '.join(split_camelcase_s(method).split('.'))]
if resource != METHODS_RESOURCE:
name_parts.append(split_camelcase_s(resource))
%>\
Expand Down

0 comments on commit 97da926

Please sign in to comment.