Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-08-05 18:36:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-05 18:36:43 +0300
commitff2265f0a9269ad5e95f77ded3c9692d656955c7 (patch)
tree6e731eda038a61254c94d8cee1964e17988681e7 /intern
parent8158211198b7a27812ddf90bf0d1df0cd9e55afb (diff)
Cleanup: comment blocks & spelling
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_XrAction.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/ghost/intern/GHOST_XrAction.h b/intern/ghost/intern/GHOST_XrAction.h
index 73a1cd9cd6a..70eaa694ae9 100644
--- a/intern/ghost/intern/GHOST_XrAction.h
+++ b/intern/ghost/intern/GHOST_XrAction.h
@@ -18,8 +18,8 @@
* \ingroup GHOST
*/
-/* Note: Requires OpenXR headers to be included before this one for OpenXR types (XrSpace, XrPath,
- * etc.). */
+/* NOTE: Requires OpenXR headers to be included before this one for OpenXR types
+ * (XrSpace, XrPath, etc.). */
#pragma once
@@ -78,9 +78,9 @@ class GHOST_XrActionProfile {
private:
XrPath m_profile = XR_NULL_PATH;
- /** Subaction data identified by user (subaction) path. */
+ /** Sub-action data identified by user `subaction` path. */
std::map<std::string, GHOST_XrSubactionData> m_subaction_data;
- /** Bindings identified by interaction (user (subaction) + component) path. */
+ /** Bindings identified by interaction (user `subaction` + component) path. */
std::map<std::string, XrPath> m_bindings;
};