From 0f9a4bea8413fa8226272c61bd31681d020b6f81 Mon Sep 17 00:00:00 2001 From: Miriah Peterson <34897832+Soypete@users.noreply.github.com> Date: Mon, 2 Oct 2023 14:28:22 -0600 Subject: [PATCH] Restful-go: README.md formatting update --- restful-go/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restful-go/README.md b/restful-go/README.md index 0ace61f..a743316 100644 --- a/restful-go/README.md +++ b/restful-go/README.md @@ -10,7 +10,7 @@ In a main function, create a webserver using the `ListenAndServe()` function. Th * reference: [go-by-example Https server](https://gobyexample.com/http-servers) -\_ _NOTE_: `ListenAndServe()` is great for prototyping and non-production development. When you are building out your services, make sure you have security in mind. Use a custom `mux`. We will learn more aabout security best practices later on in the course. Check out [Reliable Webservices](../reliable-webservice-go/README.md). +_NOTE_: `ListenAndServe()` is great for prototyping and non-production development. When you are building out your services, make sure you have security in mind. Use a custom `mux`. We will learn more aabout security best practices later on in the course. Check out [Reliable Webservices](../reliable-webservice-go/README.md). ## [Exercise 2](/ex-2-web-frameworks/framework.go) Build a Server Using an opensource Framework