From fd5c913f53c0c7717735d9cd785c81739e5ed712 Mon Sep 17 00:00:00 2001 From: Sdogruyol Date: Mon, 2 Nov 2015 21:43:42 +0200 Subject: [PATCH] Fix static sample --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6349a14..b4d07aa 100644 --- a/README.md +++ b/README.md @@ -97,9 +97,9 @@ Accessing the environment (query params, body, content_type, headers, status_cod ## Static Files -Kemal has built-in support for serving your static files. You need to put your static files under your ```src/public``` directory. +Kemal has built-in support for serving your static files. You need to put your static files under your ```/public``` directory. -E.g: A static file like ```src/public/index.html``` will be served with the matching route ```/index.html```. +E.g: A static file like ```/public/index.html``` will be served with the matching route ```/index.html```. ## Thanks