Skip to content

Commit 5ad7368

Browse files
committed
Fix string: errorMessage = null, column symbol mistyping
1 parent 42731f0 commit 5ad7368

35 files changed

Lines changed: 46 additions & 46 deletions

File tree

src/app/version1.0.0/components/name-space/validation-result-class/validation-result-class.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h2 class="section-heading">
1313
<ul>
1414
<li>
1515
<h3>
16-
<code>Validate(validators)</code>
16+
<code>Validate(params Validator[] validators)</code>
1717
<a id="validate" aria-hidden="true" class="section-heading-ref"></a>
1818
</h3>
1919
<p>
@@ -42,7 +42,7 @@ <h3>Returns :</h3>
4242
</li>
4343
<li>
4444
<h3>
45-
<code>Result(validators)</code>
45+
<code>Result(params Validator[] validators)</code>
4646
<a id="result" aria-hidden="true" class="section-heading-ref"></a>
4747
</h3>
4848
<p>

src/app/version1.0.0/components/name-space/validator-class/validator-class.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h2 class="section-heading">
2121
<ul>
2222
<li>
2323
<h3>
24-
<code>Create(model, "propertyName")</code>
24+
<code>Create(object data, string propertyName)</code>
2525
<a id="create" aria-hidden="true" class="section-heading-ref"></a>
2626
</h3>
2727
<p>

src/app/version1.0.0/components/validation/black-list-func/black-list-func.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h2 class="section-heading">
1414
<ul>
1515
<li>
1616
<h3>
17-
<code>.BlackList(TParam[] blackList, string: errorMessage = null)</code>
17+
<code>.BlackList(TParam[] blackList, string errorMessage = null)</code>
1818
</h3>
1919
<h3>Supported data types :</h3>
2020
<ul>

src/app/version1.0.0/components/validation/contains-func/contains-func.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h2 class="section-heading">
1515
<ol>
1616
<li>
1717
<h3>
18-
<code>.Contains(string str, string: errorMessage = null)</code>
18+
<code>.Contains(string str, string errorMessage = null)</code>
1919
</h3>
2020
<h3>Supported data types :</h3>
2121
<ul>
@@ -43,7 +43,7 @@ <h3>Returns :</h3>
4343
</li>
4444
<li>
4545
<h3>
46-
<code>.Contains(string: errorMessage = null, TParam[] strs)</code>
46+
<code>.Contains(string errorMessage = null, TParam[] strs)</code>
4747
</h3>
4848
<h3>Supported data types :</h3>
4949
<ul>

src/app/version1.0.0/components/validation/ends-with-func/ends-with-func.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h2 class="section-heading">
1414
<ul>
1515
<li>
1616
<h3>
17-
<code>.EndsWith(string str, string: errorMessage = null)</code>
17+
<code>.EndsWith(string str, string errorMessage = null)</code>
1818
</h3>
1919
<h3>Supported data types :</h3>
2020
<ul>

src/app/version1.0.0/components/validation/is-alpha-func/is-alpha-func.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h2 class="section-heading">
1717
<ul>
1818
<li>
1919
<h3>
20-
<code>.IsAlpha(string: errorMessage = null)</code>
20+
<code>.IsAlpha(string errorMessage = null)</code>
2121
</h3>
2222
<h3>Supported data types :</h3>
2323
<ul>

src/app/version1.0.0/components/validation/is-alpha-numeric-func/is-alpha-numeric-func.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h2 class="section-heading">
1818
<ul>
1919
<li>
2020
<h3>
21-
<code>.IsAlphaNumeric(string: errorMessage = null)</code>
21+
<code>.IsAlphaNumeric(string errorMessage = null)</code>
2222
</h3>
2323
<h3>Supported data types :</h3>
2424
<ul>

src/app/version1.0.0/components/validation/is-ascii-func/is-ascii-func.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h2 class="section-heading">
1515
<ul>
1616
<li>
1717
<h3>
18-
<code>.IsASCII(string: errorMessage = null)</code>
18+
<code>.IsASCII(string errorMessage = null)</code>
1919
</h3>
2020
<h3>Supported data types :</h3>
2121
<ul>

src/app/version1.0.0/components/validation/is-base64-func/is-base64-func.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h2 class="section-heading">
1515
<ul>
1616
<li>
1717
<h3>
18-
<code>.IsBase64(string: errorMessage = null)</code>
18+
<code>.IsBase64(string errorMessage = null)</code>
1919
</h3>
2020
<h3>Supported data types :</h3>
2121
<ul>

src/app/version1.0.0/components/validation/is-credit-card-func/is-credit-card-func.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h2 class="section-heading">
1515
<ul>
1616
<li>
1717
<h3>
18-
<code>.IsCreditCard(string: errorMessage = null)</code>
18+
<code>.IsCreditCard(string errorMessage = null)</code>
1919
</h3>
2020
<h3>Supported data types :</h3>
2121
<ul>

0 commit comments

Comments
 (0)