From 54d349b276ae1b93b084ca74e1b7f7bbad1822d1 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 21 Jun 2024 22:36:02 -0400 Subject: [PATCH] I hope this works nicely --- content/posts/data-interfaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }