Skip to content

Commit 98dd047

Browse files
Fix incorrect option
1 parent 102d713 commit 98dd047

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Java/Endpoint Examples/Multipart Payload/Markdown.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static void main(String[] args) {
3434
new MultipartBody.Builder()
3535
.setType(MultipartBody.FORM)
3636
.addFormDataPart("file", inputFile.getName(), inputFileRequestBody)
37-
.addFormDataPart("word_style", "on")
37+
.addFormDataPart("page_break_comments", "on")
3838
.build();
3939
Request request =
4040
new Request.Builder()

0 commit comments

Comments
 (0)