Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbudd committed Feb 25, 2024
1 parent 0f816ec commit 5612cc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvdaHelper/UIARemote/UIARemote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ extern "C" __declspec(dllexport) bool __stdcall initialize(bool doRemote, IUIAut
return true;
}

// Cleans up the remote opperations library.
// Cleans up the remote operations library.
extern "C" __declspec(dllexport) void __stdcall cleanup() {
if(_isInitialized) {
if (_isInitialized) {
LOG_INFO(L"Cleaning up the UIA Remote Operations abstraction library...")
UiaOperationAbstraction::Cleanup();
_isInitialized = false;
Expand Down

0 comments on commit 5612cc8

Please sign in to comment.