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`.| ---