You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -91,13 +91,11 @@ You can find more advanced examples in the [examples](https://github.com/Convert
91
91
ConvertAPI is designed to make converting file super easy, the following snippet shows how easy it is to get started. Let's convert WORD DOCX file to PDF:
92
92
93
93
```java
94
-
packagecom.convertapi.examples;
95
-
96
94
importcom.convertapi.ConvertApi;
97
95
98
96
publicclassSimpleConversion {
99
97
publicstaticvoidmain(String[] args) {
100
-
ConvertApi.convert("test.docx", "result.pdf", "YOUR API SECRET");
98
+
ConvertApi.convert("source.docx", "result.pdf", "YOUR API SECRET");
0 commit comments