From 874fe817251c6db817620c62a09732c3f90fd46c Mon Sep 17 00:00:00 2001
From: ArshadAriff <113685884+ArshadAriff@users.noreply.github.com>
Date: Thu, 31 Oct 2024 22:09:08 +0530
Subject: [PATCH] Update data-types.md
Updated data-types
---
docs/docs/scheme-intro/data-types.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/docs/scheme-intro/data-types.md b/docs/docs/scheme-intro/data-types.md
index dc2ef9d1..69a9c387 100644
--- a/docs/docs/scheme-intro/data-types.md
+++ b/docs/docs/scheme-intro/data-types.md
@@ -46,9 +46,9 @@ The first argument is a string and the second one is the base of the number. In
## Boolean values
-Scheme defines two boolean constants, `#f` and `#t`. However, the R7RS specification treats
-only`#f` as false, with everything else evaluating as true. The specification also defines `#true`
-and `#false` aliases. Some Scheme also defines `true` and `false` without hash.
+Scheme define two boolean constants `#f` and `#t` but note that the only false value, according to
+R7RS specification, should be `#f`. The specification also defines `#true` and `#false`
+aliases. Some Scheme also defines `true` and `false` without hash.
## Strings
Strings in Scheme use only double quote symbols. They can be multiline. If you want to add double