Format README example

This commit is contained in:
Christian Muehlhaeuser
2020-05-14 05:40:07 +02:00
parent ef67a1df88
commit 17674398a1
+2 -2
View File
@@ -27,7 +27,7 @@ Check out the [other examples](https://github.com/charmbracelet/glamour/tree/mas
Bye!
`
out, _ := glamour.Render(in, "dark")
out, err := glamour.Render(in, "dark")
fmt.Print(out)
```
@@ -45,7 +45,7 @@ r, _ := glamour.NewTermRenderer(
glamour.WithWordWrap(40),
)
out, _ := r.Render(in)
out, err := r.Render(in)
fmt.Print(out)
```