Update Nodes/String/Append

Chromum 2025-05-09 08:48:21 +00:00
parent 3355b134ef
commit 99b10a9e36

@ -6,8 +6,8 @@
| Name | Type | Description |
|-------------|------------|---------------------------------|
| String A | System.String | String to append to |
| String B | System.String| String to append |
| `String A` | `System.String` | The initial string to which another string will be appended.|
| `String B` | `System.String`| The string to append to the end of `String A`. |
---
@ -15,7 +15,7 @@
| Name | Type | Description |
|--------------|------------|----------------------------------|
| Appended String | System.String| The completed appended string |
| `Appended String` | `System.String`| The resulting string produced by concatenating `String A` followed by `String B`.|
---