Skip to content

Commit

Permalink
small typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dariushoule committed Feb 5, 2025
1 parent c43ab51 commit 8d9510b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Extract the contents of the archive into your debugger's plugin directory, creat
pip install x64dbg_automate --upgrade
```

🔔 Important: The Microsoft Store builds of Python are restricted such that the client library may not function well. Use them at your own risk.


### Troubleshooting

Expand Down
5 changes: 3 additions & 2 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ An automation session can be launched with four steps:

**One: Instantiate `X64DbgClient` and orient it against your installation**
```
client = X64DbgClient(x64dbg_path="C:\x64dbg\release\x64\x64dbg.exe")
from x64dbg_automate import X64DbgClient
client = X64DbgClient(x64dbg_path=r"C:\x64dbg\release\x64\x64dbg.exe")
```

**Two: Start a new debug session or attach to an existing one**
Expand All @@ -23,7 +24,7 @@ _See Client Reference sections for full capabilities._
**Four: Clean up**

```
client.deattach_session()
client.detach_session()
```

### Example: Hello World
Expand Down

0 comments on commit 8d9510b

Please sign in to comment.