From bc612d970ab3d6ccc0755dcd4569250bb6aaa5d2 Mon Sep 17 00:00:00 2001 From: Martijn Swaagman Date: Tue, 25 May 2021 12:16:37 +0200 Subject: [PATCH] [doc] fix toc links --- .../npm-browser-packages/template-deep-dive/src-utils-rs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/tutorials/npm-browser-packages/template-deep-dive/src-utils-rs.md b/docs/src/tutorials/npm-browser-packages/template-deep-dive/src-utils-rs.md index 0c557d1..92ad6fe 100644 --- a/docs/src/tutorials/npm-browser-packages/template-deep-dive/src-utils-rs.md +++ b/docs/src/tutorials/npm-browser-packages/template-deep-dive/src-utils-rs.md @@ -5,8 +5,8 @@ The purpose of `utils.rs` is to define the `utils` module, which contains a sing If the `console_error_panic_hook` feature is not enabled, then `set_panic_hook` is defined to be an inlined empty function. So, there is no run-time performance or code-size penalty incurred by its use. We will discuss: -1. [Defining `set_panic_hook`](#a1-defining-set_panic_hook) -2. [What is `console_error_panic_hook`?](#a2-what-is-console_error_panic_hook) +1. [Defining `set_panic_hook`](#1-defining-set_panic_hook) +2. [What is `console_error_panic_hook`?](#2-what-is-console_error_panic_hook) ---