summaryrefslogtreecommitdiff
path: root/src/instancemanager.h
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2020-11-07 17:05:29 -0500
committerisanae <14251494+isanae@users.noreply.github.com>2020-11-07 20:16:27 -0500
commit1bf24c7daad1eb954dc160784802de58f9809fa1 (patch)
tree1937da7585de3858298ad7dc214820c95255cd51 /src/instancemanager.h
parentd288587b002b19c54dc08d08ae267d301aa2ac81 (diff)
refactored setupInstance(), comments
ok -> okay
Diffstat (limited to 'src/instancemanager.h')
-rw-r--r--src/instancemanager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/instancemanager.h b/src/instancemanager.h
index d75a46f4..4f8b01c7 100644
--- a/src/instancemanager.h
+++ b/src/instancemanager.h
@@ -32,7 +32,7 @@ public:
enum class SetupResults
{
// instance is ready to be used
- Ok,
+ Okay,
// error while reading the INI
BadIni,
@@ -337,7 +337,7 @@ private:
//
enum class SetupInstanceResults
{
- Ok,
+ Okay,
TryAgain,
SelectAnother,
Exit
@@ -348,7 +348,7 @@ enum class SetupInstanceResults
// cancelled
//
// if there is at least one instance available, unconditionally show the
-// instance manager dialog and returns the selected instnace or empty if the
+// instance manager dialog and returns the selected instance or empty if the
// user cancelled
//
std::optional<Instance> selectInstance();
@@ -365,7 +365,7 @@ std::optional<Instance> selectInstance();
//
// - if the user cancels at any point, returns Exit
//
-// - if the instance has been set up correctly, returns Ok
+// - if the instance has been set up correctly, returns Okay
//
SetupInstanceResults setupInstance(Instance& instance, PluginContainer& pc);