From 69eadb76d9e79d19adcad4d40d03bb6eacdc0ee3 Mon Sep 17 00:00:00 2001 From: Yacine Petitprez Date: Sun, 24 Jun 2018 15:37:18 +0200 Subject: [PATCH] Fix code issue in the basic example --- manual/BasicExample.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/BasicExample.md b/manual/BasicExample.md index 65cef1885..08a131ad9 100644 --- a/manual/BasicExample.md +++ b/manual/BasicExample.md @@ -14,7 +14,7 @@ they are covered in other articles of this wiki ! `echo "CREATE DATABASE sample_for_wiki;" | psql -U postgres` # Unleash the kraken !!! -require "../../src/clear" +require "clear" # Initialize the connection Clear::SQL.init("postgres://postgres@localhost/sample_for_wiki") @@ -189,4 +189,4 @@ User.query.with_posts(&.published).limit(5).each do |user| end pause -``` \ No newline at end of file +```