Skip to content

Commit 5cc1f7d

Browse files
committed
fix readme with correct C#
1 parent 98791d7 commit 5cc1f7d

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -116,16 +116,16 @@ You can pass any custom options to the task payload via the special `Options` pr
116116

117117
```c#
118118
var task = new ConvertCreateRequest
119-
{
120-
Input = "import_example_1",
121-
Input_Format = "pdf",
122-
Output_Format = "jpg",
123-
Options = new Dictionary<string, object> {
124-
{ "width": 800 },
125-
{ "height": 600 },
126-
{ "fit": "max" }
127-
}
128-
}
119+
{
120+
Input = "import_example_1",
121+
Input_Format = "pdf",
122+
Output_Format = "jpg",
123+
Options = new Dictionary<string, object> {
124+
{ "width", 800 },
125+
{ "height", 600 },
126+
{ "fit", "max" }
127+
}
128+
};
129129
```
130130
You can use the [Job Builder](https://cloudconvert.com/api/v2/jobs/builder) to see the available options.
131131

0 commit comments

Comments
 (0)