diff --git a/aio/tools/transforms/templates/api/class.template.html b/aio/tools/transforms/templates/api/class.template.html index d0af53a1a5..45cd8ad08d 100644 --- a/aio/tools/transforms/templates/api/class.template.html +++ b/aio/tools/transforms/templates/api/class.template.html @@ -9,8 +9,8 @@ {% block details %} {% block additional %}{% endblock %} {% include "includes/description.html" %} - {$ memberHelpers.renderProperties(doc.staticProperties, 'static-properties', 'static-property', 'Static Properties') $} - {$ memberHelpers.renderMethodDetails(versionInfo, doc.staticMethods, 'static-methods', 'static-method', 'Static Methods') $} + {$ memberHelpers.renderProperties(doc.staticProperties, 'static-properties', 'static-property', 'Static properties') $} + {$ memberHelpers.renderMethodDetails(versionInfo, doc.staticMethods, 'static-methods', 'static-method', 'Static methods') $} {% if doc.constructorDoc %}

Constructor

{$ memberHelpers.renderMethodDetail(versionInfo, doc.constructorDoc, 'constructor') $}{% endif %} diff --git a/aio/tools/transforms/templates/api/includes/deprecation.html b/aio/tools/transforms/templates/api/includes/deprecation.html index 7aa4f0db54..8286ab4148 100644 --- a/aio/tools/transforms/templates/api/includes/deprecation.html +++ b/aio/tools/transforms/templates/api/includes/deprecation.html @@ -1,6 +1,6 @@ {% if doc.deprecated %}
-

Deprecation Notes

+

Deprecation notes

{$ doc.deprecated | marked $}
{% endif %} \ No newline at end of file diff --git a/aio/tools/transforms/templates/api/includes/metadata.html b/aio/tools/transforms/templates/api/includes/metadata.html index 8e1a0f953a..9aa301e44d 100644 --- a/aio/tools/transforms/templates/api/includes/metadata.html +++ b/aio/tools/transforms/templates/api/includes/metadata.html @@ -1,6 +1,6 @@ {% if doc.members.length %}
-

Metadata Properties

+

Metadata properties

{% for metadata in doc.members %}{% if not metadata.internal %}
diff --git a/aio/tools/transforms/templates/api/includes/pipe-overview.html b/aio/tools/transforms/templates/api/includes/pipe-overview.html index f6bf09eb6a..ec822379dd 100644 --- a/aio/tools/transforms/templates/api/includes/pipe-overview.html +++ b/aio/tools/transforms/templates/api/includes/pipe-overview.html @@ -11,7 +11,7 @@ {%- endfor %} }} {% if doc.valueParam.type %} -

Input Value

+

Input value

{$ params.renderParameters([doc.valueParam], 'pipe-parameters', 'pipe-parameter', true) $} {% endif %} {% if doc.pipeParams.length %} diff --git a/aio/tools/transforms/templates/api/includes/security-notes.html b/aio/tools/transforms/templates/api/includes/security-notes.html index 4f0f815b30..ff13159b9d 100644 --- a/aio/tools/transforms/templates/api/includes/security-notes.html +++ b/aio/tools/transforms/templates/api/includes/security-notes.html @@ -1,6 +1,6 @@ {% if doc.security %}
-

Security Risk

+

Security risk

{$ doc.security | marked $}
{% endif %} \ No newline at end of file diff --git a/aio/tools/transforms/templates/api/includes/see-also.html b/aio/tools/transforms/templates/api/includes/see-also.html index 0b97cc87e8..5d37c3340f 100644 --- a/aio/tools/transforms/templates/api/includes/see-also.html +++ b/aio/tools/transforms/templates/api/includes/see-also.html @@ -1,6 +1,6 @@ {%- if doc.see.length %}
-

See Also

+

See also

    {% for see in doc.see %}
  • {$ see | marked $}
  • {% endfor %} diff --git a/aio/tools/transforms/templates/api/includes/usageNotes.html b/aio/tools/transforms/templates/api/includes/usageNotes.html index 88b2d89853..7b5b0b20ea 100644 --- a/aio/tools/transforms/templates/api/includes/usageNotes.html +++ b/aio/tools/transforms/templates/api/includes/usageNotes.html @@ -1,6 +1,6 @@ {% if doc.usageNotes %}
    -

    Usage Notes

    +

    Usage notes

    {$ doc.usageNotes | marked $}
    {% endif %}