summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yuin/goldmark/renderer/html/html.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2020-02-28 14:06:11 +0100
committerGitHub <noreply@github.com>2020-02-28 13:06:10 +0000
commit15c7738b3aaf877536d355640b0f57099db9c979 (patch)
treee0a411b3d091c60e874072a51162b566756e5e10 /vendor/github.com/yuin/goldmark/renderer/html/html.go
parent74433c91bf99b94abfd7935f2a2b3a2db768da37 (diff)
downloadgitea-15c7738b3aaf877536d355640b0f57099db9c979.tar.gz
gitea-15c7738b3aaf877536d355640b0f57099db9c979.zip
goldmark v1.1.19 -> v1.1.23 (#10519)
vendor update
Diffstat (limited to 'vendor/github.com/yuin/goldmark/renderer/html/html.go')
-rw-r--r--vendor/github.com/yuin/goldmark/renderer/html/html.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/yuin/goldmark/renderer/html/html.go b/vendor/github.com/yuin/goldmark/renderer/html/html.go
index e9aca215dd..537a256feb 100644
--- a/vendor/github.com/yuin/goldmark/renderer/html/html.go
+++ b/vendor/github.com/yuin/goldmark/renderer/html/html.go
@@ -660,13 +660,13 @@ func RenderAttributes(w util.BufWriter, node ast.Node, filter util.BytesFilter)
}
}
-// A Writer interface wirtes textual contents to a writer.
+// A Writer interface writes textual contents to a writer.
type Writer interface {
// Write writes the given source to writer with resolving references and unescaping
// backslash escaped characters.
Write(writer util.BufWriter, source []byte)
- // RawWrite wirtes the given source to writer without resolving references and
+ // RawWrite writes the given source to writer without resolving references and
// unescaping backslash escaped characters.
RawWrite(writer util.BufWriter, source []byte)
}