Skip to content

Commit 5f58999

Browse files
authored
Update quickstart.md
Fix docs typo
1 parent 37b1d1c commit 5f58999

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ wrapper = XmlPowerToolsEngine()
1515

1616
### Step 2: Run Redlines
1717

18-
Use the `run_redlines` method to compare documents. You can pass the paths of the `.docx` files or their byte content:
18+
Use the `run_redline` method to compare documents. You can pass the paths of the `.docx` files or their byte content:
1919

2020
```python
2121
# Example with file paths
22-
output = wrapper.run_redlines('AuthorTag', '/path/to/original.docx', '/path/to/modified.docx')
22+
output = wrapper.run_redline('AuthorTag', '/path/to/original.docx', '/path/to/modified.docx')
2323

2424
# Example with byte content
2525
with open('/path/to/original.docx', 'rb') as f:
@@ -40,4 +40,4 @@ Process or save the output as needed. For example, to save the redline output to
4040
```python
4141
with open('/path/to/redline_output.docx', 'wb') as f:
4242
f.write(output)
43-
```
43+
```

0 commit comments

Comments
 (0)