Skip to content

Commit b2d40a1

Browse files
wsilveiranzecfan
andauthored
Apply suggestions from code review
Co-authored-by: Esther Fan <[email protected]>
1 parent 8cb28ed commit b2d40a1

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

articles/logic-apps/testing-framework/data-map-test-executor-class-definition.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ Compiles a data map and generates XSLT. The operation uses the map name to find
8080

8181
| Name | Type | Description | Required |
8282
|------|------|-------------|----------|
83-
| mapName | string | The data map name (without .lml extension) | Yes |
83+
| mapName | string | The data map file name without the .lml extension | Yes |
8484

8585
#### Returns
8686

87-
**`Task<byte[]>`**: A task that represents the asynchronous operation that returns the generated XSLT content as a byte array.
87+
**`Task<byte[]>`**: A task representing the asynchronous operation that returns the generated XSLT content as a byte array.
8888

8989
#### Exceptions
9090

@@ -99,7 +99,7 @@ var xslt = await executor.GenerateXslt("OrderToInvoice");
9999

100100
> [!NOTE]
101101
>
102-
> This method looks for the data map file at the path: `{appDirectoryPath}\Artifacts\MapDefinitions\{mapName}.lml`
102+
> This method looks for the data map file in the path: `{appDirectoryPath}\Artifacts\MapDefinitions\{mapName}.lml`
103103
104104
### GenerateXslt(GenerateXsltInput)
105105

@@ -113,7 +113,7 @@ Compiles a data map and generates XSLT from the provided map content.
113113

114114
#### Returns
115115

116-
**`Task<byte[]>`**: A task that represents the asynchronous operation that returns the generated XSLT content as a byte array.
116+
**`Task<byte[]>`**: A task representing the asynchronous operation that returns the generated XSLT content as a byte array.
117117

118118
#### Example
119119

@@ -125,7 +125,7 @@ var xslt = await executor.GenerateXslt(generateXsltInput);
125125

126126
### RunMapAsync(string, byte[])
127127

128-
Executes a data map by applying the given XSLT (found by map name) to sample input data.
128+
Executes a data map by applying the given XSLT to sample input data. The operation uses the map name to find the XSLT.
129129

130130
#### Parameters
131131

@@ -136,7 +136,7 @@ Executes a data map by applying the given XSLT (found by map name) to sample inp
136136

137137
#### Returns
138138

139-
**`Task<JToken>`**: A task that represents the asynchronous operation that returns the transformed output as a JSON token.
139+
**`Task<JToken>`**: A task representing the asynchronous operation that returns the transformed output as a JSON token.
140140

141141
#### Example
142142

@@ -149,7 +149,7 @@ Console.WriteLine(result.ToString());
149149

150150
> [!NOTE]
151151
>
152-
> This method looks for the XSLT file at the path: `{appDirectoryPath}\Artifacts\Maps\{mapName}.xslt`
152+
> This method looks for the XSLT file in the path: `{appDirectoryPath}\Artifacts\Maps\{mapName}.xslt`
153153
154154
### RunMapAsync(byte[], byte[])
155155

0 commit comments

Comments
 (0)