diff --git a/content/posts/data-interfaces.md b/content/posts/data-interfaces.md index 8477956..fa80270 100644 --- a/content/posts/data-interfaces.md +++ b/content/posts/data-interfaces.md @@ -18,7 +18,7 @@ date: "2019-02-06" I'm a fan of Go's interfaces. They're really simple and don't require a lot of legwork. -{{< highlight go "linenos=table">}} +```go type Mover interface { func Move(x, y int) (int, int) }