aboutsummaryrefslogtreecommitdiff
path: root/markdown/lexer.go
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-10-03 22:15:12 +0200
committerWilliam Hergès <william@herges.fr>2025-10-03 22:15:12 +0200
commitce6a2da035dc045510157a0eeefaebf56f0e8958 (patch)
tree47d6dca601372c110681a301f25f05279e456523 /markdown/lexer.go
parent9644afb7552d1b030beea6c8794f4419b9c686fe (diff)
fix(markdown): external source never stopped
Diffstat (limited to 'markdown/lexer.go')
-rw-r--r--markdown/lexer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/lexer.go b/markdown/lexer.go
index a02ec54..651e3aa 100644
--- a/markdown/lexer.go
+++ b/markdown/lexer.go
@@ -25,7 +25,7 @@ type lexer struct {
Value string
}
-func (l *lexer) String() string {
+func (l lexer) String() string {
return fmt.Sprintf("%s(%s)", l.Type, l.Value)
}