1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-19 07:31:24 +02:00

Fix Typo in Shell Scripting Literal Description (#5613)

Fixed a typo in the definition of boolean literals in shell scripts that could be misleading
This commit is contained in:
bitblocksplicer
2024-05-10 21:12:09 +03:00
committed by GitHub
parent 540d5030a4
commit bd76e760d4

View File

@@ -6,7 +6,7 @@ String Literals: They can be defined by enclosing the text between either single
Numeric Literals: They represent a sequence of digits. For example, 25, 100, or 1234.
Boolean Literals: In most of the Linux shell scripts, 0 represents true, and 1 represents false.
Boolean Literals: In most of the Linux shell scripts, 1 represents true, and 0 represents false.
Be mindful of the type of literal you're using as it can significantly influence your scripting, your code's readability, and its overall functionality.