From 850e3554f789ff5e7df5f41cff3cfb52343343be Mon Sep 17 00:00:00 2001 From: Brian Brazil Date: Fri, 21 Apr 2017 15:07:03 +0100 Subject: [PATCH] whch -> which --- Embedding-Caddy-in-your-Go-program.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Embedding-Caddy-in-your-Go-program.md b/Embedding-Caddy-in-your-Go-program.md index 223b86c..e09fb07 100644 --- a/Embedding-Caddy-in-your-Go-program.md +++ b/Embedding-Caddy-in-your-Go-program.md @@ -2,7 +2,7 @@ You can use Caddy as a library in your Go program. This is useful if your Go app You just need the [caddy](https://godoc.org/github.com/mholt/caddy) package. The linked godoc has instructions. -Note: If you don't want to craft a raw Caddyfile string (whih, you can use the [caddyfile](https://godoc.org/github.com/mholt/caddy/caddyfile) package to convert between that and a JSON representation of the tokens. It's lightly structured and very easy to manipulate with code, rather than dealing with parsing a raw string. +Note: If you don't want to craft a raw Caddyfile string (which, you can use the [caddyfile](https://godoc.org/github.com/mholt/caddy/caddyfile) package to convert between that and a JSON representation of the tokens. It's lightly structured and very easy to manipulate with code, rather than dealing with parsing a raw string. Here's a basic example: