diff options
| author | William Hergès <william@herges.fr> | 2025-10-03 22:15:12 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-10-03 22:15:12 +0200 |
| commit | ce6a2da035dc045510157a0eeefaebf56f0e8958 (patch) | |
| tree | 47d6dca601372c110681a301f25f05279e456523 /markdown/lexer.go | |
| parent | 9644afb7552d1b030beea6c8794f4419b9c686fe (diff) | |
fix(markdown): external source never stopped
Diffstat (limited to 'markdown/lexer.go')
| -rw-r--r-- | markdown/lexer.go | 2 |
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) } |
