Skip to content

Commit 5dc9505

Browse files
authored
Add clarification in subproperty and hook docs that it is min/max Length not value (#915)
1 parent e623e8d commit 5dc9505

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/rpdk/core/templates/docs-subproperty.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ _Allowed Values_: {% for allowedvalue in prop.allowedvalues %}<code>{{ allowedva
5858
{% endif %}
5959
{% if prop.minLength %}
6060

61-
_Minimum_: <code>{{ prop.minLength }}</code>
61+
_Minimum Length_: <code>{{ prop.minLength }}</code>
6262
{% endif %}
6363
{% if prop.maxLength %}
6464

65-
_Maximum_: <code>{{ prop.maxLength }}</code>
65+
_Maximum Length_: <code>{{ prop.maxLength }}</code>
6666
{% endif %}
6767
{% if prop.pattern %}
6868

src/rpdk/core/templates/hook-docs-readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ _Allowed Values_: {% for allowedvalue in prop.allowedvalues %}<code>{{ allowedva
5454
{% endif %}
5555
{% if prop.minLength %}
5656

57-
_Minimum_: <code>{{ prop.minLength }}</code>
57+
_Minimum Length_: <code>{{ prop.minLength }}</code>
5858
{% endif %}
5959
{% if prop.maxLength %}
6060

61-
_Maximum_: <code>{{ prop.maxLength }}</code>
61+
_Maximum Length_: <code>{{ prop.maxLength }}</code>
6262
{% endif %}
6363

6464
{% endif %}

0 commit comments

Comments
 (0)