summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhuantian <davidtianli@gmail.com>2022-03-02 05:53:59 +0000
committerGitHub <noreply@github.com>2022-03-02 13:53:59 +0800
commit590d39785243afb6da3662cf77c842a5ff4e1412 (patch)
tree1e4b7c21a404a75e107c049fb5a3c10f8474c958
parentd6d36093b18dfa1e2b8b6325016f1def015250b4 (diff)
downloadNim-590d39785243afb6da3662cf77c842a5ff4e1412.tar.gz
Fix typo in Nim Tutorial pt3 (#19579)
-rw-r--r--doc/tut3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut3.rst b/doc/tut3.rst
index 6b5a3b5ca..1c497f1f5 100644
--- a/doc/tut3.rst
+++ b/doc/tut3.rst
@@ -244,7 +244,7 @@ Building Your First Macro
 -------------------------
 
 To give a starting point to writing macros we will show now how to
-implement the `myDebug` macro mentioned earlier. The first thing to
+implement the `myAssert` macro mentioned earlier. The first thing to
 do is to build a simple example of the macro usage, and then just
 print the argument. This way it is possible to get an idea of what a
 correct argument should look like.