From 2934e49f93691b97fdb276848675d6b019ce75b4 Mon Sep 17 00:00:00 2001 From: Brandon Jeong Date: Fri, 15 May 2020 19:58:34 +0000 Subject: [PATCH] fix wrong source code path and missing opening quote --- gitlab-pages/docs/language-basics/boolean-if-else.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gitlab-pages/docs/language-basics/boolean-if-else.md b/gitlab-pages/docs/language-basics/boolean-if-else.md index 31c87ee4a..62bae1b7e 100644 --- a/gitlab-pages/docs/language-basics/boolean-if-else.md +++ b/gitlab-pages/docs/language-basics/boolean-if-else.md @@ -549,7 +549,7 @@ You can run the `compare` function defined above using the LIGO compiler like this: ```shell ligo run-function -gitlab-pages/docs/language-basics/boolean-if-else/cond.ligo compare 21n' +gitlab-pages/docs/language-basics/src/boolean-if-else/cond.ligo compare '21n' # Outputs: Large(Unit) ``` @@ -590,7 +590,7 @@ You can run the `compare` function defined above using the LIGO compiler like this: ```shell ligo run-function -gitlab-pages/docs/language-basics/boolean-if-else/cond.mligo compare 21n' +gitlab-pages/docs/language-basics/src/boolean-if-else/cond.mligo compare '21n' # Outputs: Large ``` @@ -613,7 +613,7 @@ You can run the `compare` function defined above using the LIGO compiler like this: ```shell ligo run-function -gitlab-pages/docs/language-basics/boolean-if-else/cond.religo compare 21n' +gitlab-pages/docs/language-basics/src/boolean-if-else/cond.religo compare '21n' # Outputs: Large ```