Skip to content

Commit

Permalink
docs: Update grammar a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlydog committed Feb 27, 2023
1 parent 72c95c7 commit 4629aff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ Typically your AHK scripts/hotkeys are probably more than one line long, but thi

## Additional Info

All of the out-of-the-box commands and hotkeys are provided in the `DefaultCommands\DefaultCommands.ahk` and `DefaultCommands\DefualtHotkeys.ahk` files respectively; feel free to look at them for examples, but do not edit them as they may be updated in future versions.
All of the out-of-the-box commands and hotkeys are provided in the `DefaultCommands\DefaultCommands.ahk` and `DefaultCommands\DefaultHotkeys.ahk` files respectively; feel free to look at them for examples.
Editing them is not recommended, as any changes you make may be overwritten when they are updated in future versions.

## Next Steps

Expand Down
4 changes: 2 additions & 2 deletions docs/MigrateFromV1ToV2.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ There were some breaking changes made in v2, so if you are upgrading from v1 to

In v1 all command scripts were placed in a `Commands` directory.
In v2 we have separated the built-in default commands from the user commands to make updating to new versions easier in the future.
The built-in default commands are now located in the `DefaultCommands` directory, and these should never be modified.
The built-in default commands are now located in the `DefaultCommands` directory, and these should not be modified.
All user commands should now be placed in the `UserCommands` directory.

The `CommandScriptsToInclude.ahk` file was also removed in v2; instead those include statements should be moved to the `MyCommands.ahk` and `MyHotkeys.ahk` files.
Expand All @@ -27,7 +27,7 @@ To migrate your customizations from v1 to v2:
#Include %A_ScriptDir%\Commands\WorkRelatedCommands.ahk
```

Will become:
Should be changed to:

```AutoHotkey
#Include %A_ScriptDir%\UserCommands\WorkRelatedCommands.ahk
Expand Down

0 comments on commit 4629aff

Please sign in to comment.