From 021bcb337eed111f5ba2c1c73027a84cc8936f64 Mon Sep 17 00:00:00 2001 From: Victor Prokhorov Date: Sun, 15 Sep 2024 21:10:18 +0200 Subject: [PATCH] fix: missing whitespace typo --- TUTORIAL.md | 2 +- tutorial.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index f8bef32cc8..560e014fc4 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -863,7 +863,7 @@ It printed `1` this time for false. You can separate commands on a single line w ### 564.1 -It's still false. Using the same syntax of `[[ ... ]]; echo$?`, check if `10` is not equal to `5` and print the exit status of the expression on one line. +It's still false. Using the same syntax of `[[ ... ]]; echo $?`, check if `10` is not equal to `5` and print the exit status of the expression on one line. #### HINTS diff --git a/tutorial.json b/tutorial.json index 64a0faf33e..989240ab01 100644 --- a/tutorial.json +++ b/tutorial.json @@ -1808,7 +1808,7 @@ "f8d172acfa090a77f4d686f980f68eb980f2d6c3" ] }, - "content": "It's still false. Using the same syntax of `[[ ... ]]; echo$?`, check if `10` is not equal to `5` and print the exit status of the expression on one line.", + "content": "It's still false. Using the same syntax of `[[ ... ]]; echo $?`, check if `10` is not equal to `5` and print the exit status of the expression on one line.", "hints": [ "Check the `help test` menu to find the `not equal` operator", "It's the `-ne` operator",