From da4e38ab0fa35148a5256f36df6c8ac7a1822d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 4 Dec 2015 13:36:06 +0200 Subject: [PATCH] Update tutorial.md --- docs/tutorial.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 515ba7a..e581a6a 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -18,7 +18,7 @@ cd awesome_web_project Then add *kemal* to the `shard.yml` file as a dependency. -``` +```yml dependencies: kemal: github: sdogruyol/kemal @@ -35,7 +35,7 @@ shards install Open `awesome_web_project/src/awesome_web_project.cr` and require `kemal` to use Kemal. -``` +```ruby require 'kemal' ``` @@ -43,7 +43,7 @@ require 'kemal' Do some awesome stuff with awesome Kemal. -``` +```ruby get "/" do "Hello World!" end