Skip to content

Commit

Permalink
format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgerangel-msft committed Dec 18, 2024
1 parent eb96974 commit 0c7b1e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ function fromSdkHttpOperationParameter(

// TO-DO: In addition to checking if a path parameter is exploded, we should consider capturing the style for
// any path expansion to ensure the parameter values are delimited correctly during serialization.
const explode = (parameterType.kind === "array" || parameterType.kind === "dict") && isExplodedParameter(p);
const explode =
(parameterType.kind === "array" || parameterType.kind === "dict") && isExplodedParameter(p);

return {
Name: p.name,
Expand Down

0 comments on commit 0c7b1e1

Please sign in to comment.