Skip to content

Commit 484c330

Browse files
committed
corrected syntax per Adrian
1 parent 304f975 commit 484c330

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/api-management/set-body-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ The following example uses the `AsFormUrlEncodedContent()` expression to access
257257
<set-body
258258
@{ 
259259
var body = context.Request.Body.AsFormUrlEncodedContent();
260-
body ["newKey"].Add ("newValue");
260+
body["newKey"].Add("newValue");
261261
return body.ToFormUrlEncodedContent(); 
262262
263263
</set-body>

0 commit comments

Comments
 (0)