diff --git a/doc/building.dox b/doc/building.dox index cf0c631db..d83e6f2a2 100644 --- a/doc/building.dox +++ b/doc/building.dox @@ -529,7 +529,7 @@ thing, but if you need to override those, use the `MAGNUM_PLUGINS_DIR`, `MAGNUM_PLUGINS_DEBUG_DIR` and `MAGNUM_PLUGINS_RELEASE_DIR` CMake variables. Those are empty by default, which means no hardcoded path is used. Another option is supplying the plugin search path to the -@ref Corrade::PluginManager::Manger constructor either using the same CMake +@ref Corrade::PluginManager::Manager constructor either using the same CMake variables (passed through to preprocessor, see @ref cmake) or via any other means. All builtin Magnum utilities such as @ref magnum-imageconverter also provide a way to override the plugin directory via the `--plugin-dir` diff --git a/doc/cmake.dox b/doc/cmake.dox index e241be070..5617decf9 100644 --- a/doc/cmake.dox +++ b/doc/cmake.dox @@ -27,7 +27,8 @@ namespace Magnum { /** @page cmake Usage with CMake @brief Guide how to find and use Magnum with the CMake buildsystem. -@m_keywords{CMake} +@m_keywords{CMake Subproject} +@m_keyword{CMake subproject,,} @tableofcontents @m_footernavigation diff --git a/src/Magnum/Math/Vector2.h b/src/Magnum/Math/Vector2.h index 8f13fa1e9..843e043e4 100644 --- a/src/Magnum/Math/Vector2.h +++ b/src/Magnum/Math/Vector2.h @@ -154,7 +154,7 @@ template class Vector2: public Vector<2, T> { * types. @f[ * \boldsymbol v_\bot = \begin{pmatrix} -v_y \\ v_x \end{pmatrix} * @f] - * @see @ref cross(), + * @see @ref cross(const Vector2&, const Vector2&), * @ref dot(const Vector&, const Vector&), * @ref Vector::operator-() const "operator-() const" */