Bläddra i källkod

docs: Fix dead links

Ole 9 år sedan
förälder
incheckning
c3391a4226
3 ändrade filer med 5 tillägg och 5 borttagningar
  1. 2 2
      docs/mkdocs/user-types.md
  2. 1 1
      docs/output/index.html
  3. 2 2
      docs/output/user-types/index.html

+ 2 - 2
docs/mkdocs/user-types.md

@@ -30,7 +30,7 @@ struct Point {
 ```
 
 ## Register user type with constructor
-[registerUserType<S>](/reference/namespaceluwra.html#aae6f45ae03c3bd91321ea19f794cae18) allows
+[registerUserType<S>](/reference/namespaceluwra.html#a683f6075862f8fc5cad0d76445f2f607) allows
 you to register a metatable and constructor in the global namespace. The template parameter to
 `registerUserType` is a signature in the form of `U(A...)` where `U` is your user type and `A...`
 the parameter types to the constructor which you want to register.
@@ -63,7 +63,7 @@ luwra::registerUserType<Point(double, double)>(
 ```
 
 Parameter 3 and 4 are instances of
-[FieldVector](/namespaceluwra.html#ac090722c6d5d6b88b31895aad64788c2). The `LUWRA_MEMBER` macro
+[FieldVector](/reference/namespaceluwra.html#ac090722c6d5d6b88b31895aad64788c2). The `LUWRA_MEMBER` macro
 generates a `std::pair<Pushable, Pushable>` expression.
 
 ```c++

+ 1 - 1
docs/output/index.html

@@ -193,5 +193,5 @@ your preference.</p>
 
 <!--
 MkDocs version : 0.15.3
-Build Date UTC : 2016-05-06 19:46:59.959773
+Build Date UTC : 2016-05-06 20:15:44.620000
 -->

+ 2 - 2
docs/output/user-types/index.html

@@ -171,7 +171,7 @@ in Lua, you must register such metatable in Lua's registry.</p>
 </code></pre>
 
 <h2 id="register-user-type-with-constructor">Register user type with constructor</h2>
-<p><a href="../reference/namespaceluwra.html#aae6f45ae03c3bd91321ea19f794cae18">registerUserType&lt;S&gt;</a> allows
+<p><a href="../reference/namespaceluwra.html#a683f6075862f8fc5cad0d76445f2f607">registerUserType&lt;S&gt;</a> allows
 you to register a metatable and constructor in the global namespace. The template parameter to
 <code>registerUserType</code> is a signature in the form of <code>U(A...)</code> where <code>U</code> is your user type and <code>A...</code>
 the parameter types to the constructor which you want to register.</p>
@@ -200,7 +200,7 @@ overridden.</p>
 </code></pre>
 
 <p>Parameter 3 and 4 are instances of
-<a href="../namespaceluwra.html#ac090722c6d5d6b88b31895aad64788c2">FieldVector</a>. The <code>LUWRA_MEMBER</code> macro
+<a href="../reference/namespaceluwra.html#ac090722c6d5d6b88b31895aad64788c2">FieldVector</a>. The <code>LUWRA_MEMBER</code> macro
 generates a <code>std::pair&lt;Pushable, Pushable&gt;</code> expression.</p>
 <pre><code class="c++">LUWRA_MEMBER(Point, scale) === {&quot;scale&quot;, LUWRA_WRAP(Point::scale)}
 </code></pre>