We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb75c5b commit 97da926Copy full SHA for 97da926
1 file changed
src/mako/lib/lib.mako
@@ -80,7 +80,8 @@ It seems there is nothing you can do here ... .
80
if sn in schemas:
81
md_resource = link(md_resource, schema_doc_format(schemas[sn]) % unique_type_name(sn))
82
%>\
83
-* ${md_resource} (${put_and(md_methods)})
+* ${md_resource}
84
+ * ${put_and(md_methods)}
85
% endfor ## each resource activity
86
87
% if METHODS_RESOURCE in c.rta_map:
@@ -100,7 +101,7 @@ ${method_type} supported by ...
100
101
% for m in methods:
102
<%
103
_, resource, method = activity_split(m.id)
- name_parts = [split_camelcase_s(method)]
104
+ name_parts = [' '.join(split_camelcase_s(method).split('.'))]
105
if resource != METHODS_RESOURCE:
106
name_parts.append(split_camelcase_s(resource))
107
0 commit comments