Browse Source

Fix links in interceptors tutorial (#1197)

Motivation:

A few links in the interceptors docs were pointing to the wrong directory.

Modifications:

Fix links.

Result:

Resolves #1196
George Barnett 4 years ago
parent
commit
1127de5e38
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/interceptors-tutorial.md

+ 2 - 2
docs/interceptors-tutorial.md

@@ -291,6 +291,6 @@ It is important to note that interceptor functions are invoked on the
 `EventLoop` provided by the context and that implementations *must* respect this
 by invoking methods on the `context` from that `EventLoop`.
 
-[quick-start]: ../quick-start.md
-[basic-tutorial]: ../basic-tutorial.md
+[quick-start]: ./quick-start.md
+[basic-tutorial]: ./basic-tutorial.md
 [echo-example]: ../Sources/Examples/Echo