Skip to content

Commit cc75a95

Browse files
authored
use sentence case
1 parent 0349ce0 commit cc75a95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/src/pages/reference/[func].astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ const oopList = Array.isArray(funcInfo.oop) ? funcInfo.oop : funcInfo.oop ? [fun
229229
<>
230230
{syntax.parameters.some((param: any) => !param.default) && (
231231
<>
232-
<h5>Required Arguments</h5>
232+
<h5>Required arguments</h5>
233233
<ul>
234234
{syntax.parameters
235235
.filter((param: any) => !param.default)
@@ -254,8 +254,8 @@ const oopList = Array.isArray(funcInfo.oop) ? funcInfo.oop : funcInfo.oop ? [fun
254254

255255
{syntax.parameters.some((param: any) => param.default) && (
256256
<>
257-
<h5>Optional Arguments</h5>
258-
<p><strong>NOTE</strong>: When using <a href="/reference/Optional_Arguments">optional arguments</a>, you might need to supply all arguments before the one you wish to use.</p>
257+
<h5>Optional arguments</h5>
258+
<p><strong>Note</strong>: when using <a href="/reference/Optional_Arguments">optional arguments</a>, you might need to supply all arguments before the one you wish to use.</p>
259259
<ul>
260260
{syntax.parameters
261261
.filter((param: any) => param.default)

0 commit comments

Comments
 (0)