From 99b10a9e36eeaa194fad840c230c29fc5177890f Mon Sep 17 00:00:00 2001 From: Chromum Date: Fri, 9 May 2025 08:48:21 +0000 Subject: [PATCH] Update Nodes/String/Append --- Nodes%2FString%2FAppend.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Nodes%2FString%2FAppend.md b/Nodes%2FString%2FAppend.md index 281ec91..e206ef0 100644 --- a/Nodes%2FString%2FAppend.md +++ b/Nodes%2FString%2FAppend.md @@ -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`.| ---