From 6aa232fa0c9719197b22c876351a7c6c52fdd6cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 10 Apr 2020 21:42:04 +0200 Subject: [PATCH] Trade: doc++ --- src/Magnum/Trade/Data.h | 4 ++-- src/Magnum/Trade/sceneconverter.cpp | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Trade/Data.h b/src/Magnum/Trade/Data.h index 59d98e922..4e1684ffa 100644 --- a/src/Magnum/Trade/Data.h +++ b/src/Magnum/Trade/Data.h @@ -47,14 +47,14 @@ namespace Magnum { namespace Trade { */ enum class DataFlag: UnsignedByte { /** - * Data are owned by the instance. If this flag is not set, the instance + * Data is owned by the instance. If this flag is not set, the instance * might be for example referencing a memory-mapped file or a constant * memory. */ Owned = 1 << 0, /** - * Data are mutable. If this flag is not set, the instance might be for + * Data is mutable. If this flag is not set, the instance might be for * example referencing a readonly memory-mapped file or a constant memory. */ Mutable = 2 << 0 diff --git a/src/Magnum/Trade/sceneconverter.cpp b/src/Magnum/Trade/sceneconverter.cpp index af30167b4..d1d1dff64 100644 --- a/src/Magnum/Trade/sceneconverter.cpp +++ b/src/Magnum/Trade/sceneconverter.cpp @@ -40,6 +40,7 @@ namespace Magnum { /** @page magnum-sceneconverter Scene conversion utility @brief Converts scenes of different formats +@m_since_latest @m_footernavigation @m_keywords{magnum-sceneconverter sceneconverter}