[confirm] Fix typo in help message (#2046)

develop
Tim Siegel 2022-03-23 22:45:13 -04:00 committed by GitHub
parent 17b16d8536
commit ab54cbff7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

@ -56,6 +56,7 @@ changelog.txt uses a syntax similar to RST, with a few special sequences:
- Lua API.rst added: ``isHidden(unit)``, ``isFortControlled(unit)``, ``getOuterContainerRef(unit)``, ``getOuterContainerRef(item)``
- Update download link and installation instructions for Visual C++ 2015 build tools on Windows
- Updated information regarding obtaining a compatible Windows build environment
- `confirm`: Correct the command name in the plugin help text
## API
- Added functions reverse-engineered from ambushing unit code: ``Units::isHidden``, ``Units::isFortControlled``, ``Units::getOuterContainerRef``, ``Items::getOuterContainerRef``

@ -492,8 +492,8 @@ DFhackCExport command_result plugin_init (color_ostream &out, vector <PluginComm
df_confirm,
false, //allow non-interactive use
" confirmation enable|disable option|all ...\n"
" confirmation help|status\n"
" confirm enable|disable option|all ...\n"
" confirm help|status\n"
));
return CR_OK;
}