From 9062121cc87b6556c191a6783049caab66947673 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sun, 12 Sep 2021 18:51:19 +0300 Subject: [PATCH] Update Other.hpp --- module/Library/DPP/Other.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/module/Library/DPP/Other.hpp b/module/Library/DPP/Other.hpp index f255bd45..d052be5a 100644 --- a/module/Library/DPP/Other.hpp +++ b/module/Library/DPP/Other.hpp @@ -70,7 +70,7 @@ struct DpActivity */ Ptr mPtr{nullptr}; /* -------------------------------------------------------------------------------------------- - * Wether the referenced pointer is owned. + * Whether the referenced pointer is owned. */ bool mOwned{false}; /* -------------------------------------------------------------------------------------------- @@ -146,7 +146,7 @@ struct DpActivity */ SQMOD_NODISCARD Ptr::element_type & Valid() const { Validate(); return *mPtr; } /* -------------------------------------------------------------------------------------------- - * Check wether a valid instance is managed. + * Check whether a valid instance is managed. */ SQMOD_NODISCARD bool IsValid() const { return static_cast< bool >(mPtr); } /* -------------------------------------------------------------------------------------------- @@ -264,7 +264,7 @@ struct DpPresence */ Ptr mPtr{nullptr}; /* -------------------------------------------------------------------------------------------- - * Wether the referenced pointer is owned. + * Whether the referenced pointer is owned. */ bool mOwned{false}; /* -------------------------------------------------------------------------------------------- @@ -334,7 +334,7 @@ struct DpPresence */ SQMOD_NODISCARD Ptr::element_type & Valid() const { Validate(); return *mPtr; } /* -------------------------------------------------------------------------------------------- - * Check wether a valid instance is managed. + * Check whether a valid instance is managed. */ SQMOD_NODISCARD bool IsValid() const { return static_cast< bool >(mPtr); } /* -------------------------------------------------------------------------------------------- @@ -453,7 +453,7 @@ struct DpVoiceState */ Ptr mPtr{nullptr}; /* -------------------------------------------------------------------------------------------- - * Wether the referenced pointer is owned. + * Whether the referenced pointer is owned. */ bool mOwned{false}; /* -------------------------------------------------------------------------------------------- @@ -521,7 +521,7 @@ struct DpVoiceState */ SQMOD_NODISCARD Ptr::element_type & Valid() const { Validate(); return *mPtr; } /* -------------------------------------------------------------------------------------------- - * Check wether a valid instance is managed. + * Check whether a valid instance is managed. */ SQMOD_NODISCARD bool IsValid() const { return static_cast< bool >(mPtr); } /* --------------------------------------------------------------------------------------------