From f0c60b06e5cff8064bf0a9a32ec2d2bc14a694d9 Mon Sep 17 00:00:00 2001 From: Nils-Hero Lindemann Date: Sat, 9 May 2026 08:55:39 +0200 Subject: [PATCH] Update outdated string representation in example (#25802) See [here](https://nim-lang.github.io/Nim/tut1.html#internal-type-representation). --- doc/tut1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tut1.md b/doc/tut1.md index 072d8f3ba6..be13f8fbb5 100644 --- a/doc/tut1.md +++ b/doc/tut1.md @@ -1144,7 +1144,7 @@ there is a difference between the `$` and `repr` outputs: echo myCharacter, ":", repr(myCharacter) # --> n:'n' echo myString, ":", repr(myString) - # --> nim:0x10fa8c050"nim" + # --> nim:"nim" echo myInteger, ":", repr(myInteger) # --> 42:42 echo myFloat, ":", repr(myFloat)