Skip to content

Commit

Permalink
docs(readme): fix linux path example (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Jan 17, 2023
1 parent 63918f1 commit 4210dfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Once they have been installed, you will need to pass the `unrtf` installation di

```js
const { UnRTF } = require("node-unrtf");
const unRtf = new UnRTF("./usr/bin");
const unRtf = new UnRTF("/usr/bin");
```

## API
Expand Down Expand Up @@ -115,7 +115,7 @@ Example of calling unRTF.convert with a promise chain:
const { UnRTF } = require("node-unrtf");

const file = "test_document.rtf";
const unRtf = new UnRTF("./usr/bin");
const unRtf = new UnRTF("/usr/bin");
const options = {
outputHtml: true,
};
Expand Down

0 comments on commit 4210dfd

Please sign in to comment.