From 612c46e9e8e31d6cfe4f051405824d63faa4cb2b Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Mon, 28 Dec 2015 11:19:14 +0100 Subject: [PATCH] docs: string require double quotes Otherwise the following error will be shown: `Syntax error in ... unterminated char literal, use double quotes for strings` Tested with crystal --version Crystal 0.10.0 (Wed Dec 23 21:19:16 UTC 2015) --- docs/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started.md b/docs/getting_started.md index 5a458b2..0d9c4da 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -44,7 +44,7 @@ Installing kemal (master) Open `your_app/src/your_app.cr` and require `kemal` to use Kemal. ```ruby -require 'kemal' +require "kemal" ``` ## 4. Hack your project