aboutsummaryrefslogtreecommitdiff
path: root/go
diff options
context:
space:
mode:
Diffstat (limited to 'go')
-rw-r--r--go/typdown.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/typdown.go b/go/typdown.go
index 1125ecb..386b779 100644
--- a/go/typdown.go
+++ b/go/typdown.go
@@ -31,7 +31,7 @@ var (
func Parse(content string) (template.HTML, error) {
code := C.uchar(0)
conv := C.CString(content)
- raw := C.parse(conv, &code)
+ raw := C.typdown_parse(conv, &code)
defer C.free(unsafe.Pointer(conv))
if code > 0 {
err := codeErrors[uint8(code)]