diff --git a/src/Config.h b/src/Config.h index 992c9920..7664b158 100644 --- a/src/Config.h +++ b/src/Config.h @@ -43,7 +43,7 @@ typedef KDDockWidgets::Controllers::MainWindow *(*MainWindowFactoryFunc)(const Q /// @brief Function to allow more granularity to disallow where widgets are dropped /// -/// By default, widgets can be dropped to the outter and inner left/right/top/bottom +/// By default, widgets can be dropped to the outer and inner left/right/top/bottom /// and center. The client app can however provide a lambda via setDropIndicatorAllowedFunc /// to block (by returning false) any specific locations they desire. /// @@ -255,7 +255,7 @@ public: /** * @brief Allows the client app to disallow certain docking indicators. * - * For example, let's assume the app doesn't want to show outter indicators for a certain + * For example, let's assume the app doesn't want to show outer indicators for a certain * dock widget. * * @code @@ -267,7 +267,7 @@ public: * const KDDockWidgets::Controllers::DockWidget::List &target, * KDDockWidgets::Controllers::DropArea *) * { - * // disallows dockFoo to be docked to outter areas + * // disallows dockFoo to be docked to outer areas * return !((loc & KDDockWidgets::DropLocation_Outter) && source.contains(dockFoo)); * }; * diff --git a/src/Platform.h b/src/Platform.h index dca67ebf..64e07fcf 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -218,7 +218,7 @@ public: /// @brief halts the test during the specified number of milliseconds /// The event loop keeps running. Use this for debugging purposes so you can interact with your test - /// and see what's goign on + /// and see what's going on virtual void tests_wait(int ms) = 0; virtual void installMessageHandler() = 0;