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}