diff --git a/doc/types.dox b/doc/types.dox
index 164ba457a..468265ff0 100644
--- a/doc/types.dox
+++ b/doc/types.dox
@@ -42,14 +42,14 @@ consistency and reduce confusion (e.g. @ref std::int32_t, @cpp int @ce and
| Magnum type | Size | Equivalent GLSL type |
| ------------------ | -------------- | ----------------------- |
-| @ref UnsignedByte | 8bit unsigned | |
-| @ref Byte | 8bit signed | |
-| @ref UnsignedShort | 16bit unsigned | |
-| @ref Short | 16bit signed | |
+| @ref UnsignedByte | 8bit unsigned | (*none*) |
+| @ref Byte | 8bit signed | (*none*) |
+| @ref UnsignedShort | 16bit unsigned | (*none*) |
+| @ref Short | 16bit signed | (*none*) |
| @ref UnsignedInt | 32bit unsigned | @glsl uint @ce |
| @ref Int | 32bit signed | @glsl int @ce |
-| @ref UnsignedLong | 64bit unsigned | |
-| @ref Long | 64bit signed | |
+| @ref UnsignedLong | 64bit unsigned | (*none*) |
+| @ref Long | 64bit signed | (*none*) |
| @ref Half | 16bit | (*none*) |
| @ref Float | 32bit | @glsl float @ce |
| @ref Double | 64bit | @glsl double @ce |
diff --git a/src/Magnum/Trade/AnimationData.h b/src/Magnum/Trade/AnimationData.h
index 98ff4cf13..2f8dab041 100644
--- a/src/Magnum/Trade/AnimationData.h
+++ b/src/Magnum/Trade/AnimationData.h
@@ -452,10 +452,9 @@ class MAGNUM_TRADE_EXPORT AnimationData {
/** @relatesalso AnimationData
@brief Animation interpolator function for given interpolation behavior
-To be used from importer plugins --- unlike @ref Animation::interpolatorFor()
-guarantees that the returned function pointer is not instantiated inside plugin
-binary to avoid dangling function pointers on plugin unload. See
-@ref Animation::interpolatorFor() for more information.
+To be used from importer plugins --- wrapper around @ref Animation::interpolatorFor(),
+guaranteeing that the returned function pointer is not instantiated inside the
+plugin binary to avoid dangling function pointers on plugin unload.
@see @ref AnimationData
@experimental
*/