diff --git a/src/Magnum/Trade/AbstractImporter.h b/src/Magnum/Trade/AbstractImporter.h index 712d738eb..d96020f52 100644 --- a/src/Magnum/Trade/AbstractImporter.h +++ b/src/Magnum/Trade/AbstractImporter.h @@ -1969,7 +1969,7 @@ class MAGNUM_TRADE_EXPORT AbstractImporter: public PluginManager::AbstractManagi /** * @brief Implementation for @ref mesh2DName() * - * Default implementation returns empty string. There weren't any + * Default implementation returns an empty string. There weren't any * importers in existence known to implement 2D mesh import, so unlike * @ref doMesh3DName() this function doesn't delegate to * @ref doMeshName(). @@ -2035,7 +2035,7 @@ class MAGNUM_TRADE_EXPORT AbstractImporter: public PluginManager::AbstractManagi * @brief Implementation for @ref mesh3D() * * Default implementation returns @ref doMesh() converted to - * @cpp MeshData3D @ce for backwards compatibility. + * @ref MeshData3D for backwards compatibility. * @m_deprecated_since{2020,06} Implement @ref doMesh() instead. */ CORRADE_IGNORE_DEPRECATED_PUSH /* Clang doesn't warn, but GCC does */ diff --git a/src/Magnum/Trade/MaterialData.h b/src/Magnum/Trade/MaterialData.h index 71e475419..47db9050f 100644 --- a/src/Magnum/Trade/MaterialData.h +++ b/src/Magnum/Trade/MaterialData.h @@ -1026,14 +1026,14 @@ enum class MaterialAttributeType: UnsignedByte { /** * @cpp const void* @ce, type is not preserved. For convenience it's - * possible to retrieve the value by calling @cpp attribute() @ce + * possible to retrieve the value by calling @cpp attribute() @ce * with an arbitrary `T` but the user has to ensure the type is correct. */ Pointer, /** * @cpp void* @ce, type is not preserved. For convenience it's possible to - * retrieve the value by calling @cpp attribute() @ce with an arbitrary + * retrieve the value by calling @cpp attribute() @ce with an arbitrary * `T` but the user has to ensure the type is correct. */ MutablePointer,