From 825f4936f71970a5167e54e2c3678e3d45d732b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vic=20Sh=C3=B3stak?= Date: Sat, 1 Feb 2020 18:55:36 +0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index af538b97..3d6bbdd3 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ $ go get -u github.com/gofiber/fiber ## Hello, world! -Embedded below is essentially the simplest Fiber app you can create. +Embedded below is essentially the simplest Fiber app you can create: ```go // server.go @@ -75,7 +75,7 @@ And now, browse to `http://localhost:8080` and you should see `Hello, World!` on ## Static files -To serve static files, use the [Static](https://gofiber.github.io/fiber/#/?id=static-files) method. +To serve static files, use the [Static](https://gofiber.github.io/fiber/#/?id=static-files) method: ```go package main @@ -104,7 +104,7 @@ http://localhost:8080/css/style.css ## Middleware -Middleware has never been so easy, just like Express you call the `Next()` matching route function! +Middleware has never been so easy! Just like Express you call the `Next()` matching route function: ```go package main