Skip to content

Commit 3383134

Browse files
committed
Document String variable in Parameters section of String functions
Some of the reference pages were missing this from the Parameters section.
1 parent 5b1586a commit 3383134

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

Language/Variables/Data Types/String/Functions/c_str.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Converts the contents of a String as a C-style, null-terminated string. Note tha
2828

2929
[float]
3030
=== Parameters
31-
none
31+
`myString`: a variable of type String
3232

3333
[float]
3434
=== Returns

Language/Variables/Data Types/String/Functions/concat.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ Appends the parameter to a String.
2828

2929
[float]
3030
=== Parameters
31+
`myString`: a variable of type String
32+
3133
`parameter`: *Allowed types are* String, string, char, byte, int, unsigned int, long, unsigned long, float, double, __FlashStringHelper(F() macro).
3234

3335
[float]

Language/Variables/Data Types/String/Functions/remove.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Modify in place a String removing chars from the provided index to the end of th
2929

3030
[float]
3131
=== Parameters
32+
`myString`: a variable of type String
33+
3234
`index`: a variable of type unsigned int
3335

3436
`count`: a variable of type unsigned int

Language/Variables/Data Types/String/Functions/reserve.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ The String reserve() function allows you to allocate a buffer in memory for mani
2828

2929
[float]
3030
=== Parameters
31+
`myString`: a variable of type String
32+
3133
`size`: unsigned int declaring the number of bytes in memory to save for String manipulation
3234

3335

0 commit comments

Comments
 (0)