From fad0959b7ea18ff2a0bfd76511625dfd5e7a5cd1 Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Thu, 12 Dec 2024 15:23:01 +0100 Subject: [PATCH] (docs) grammar --- 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 279bae50..acedb241 100644 --- a/docs/docs/scheme-intro/data-types.md +++ b/docs/docs/scheme-intro/data-types.md @@ -342,7 +342,7 @@ Most special symbols in Scheme start with a hash symbol. Example are Byte vector ``` Above creates 8 bit byte vector of numbers. In R7RS, only unsigned 8 bit vectors are -defined. But in [SRFI-4](https://srfi.schemers.org/srfi-4/srfi-4.html) are more bit vectors types. -They all starts with hash. In different SRFI there are more examples of syntax's that start with -hash. This is just a convention everything is using. +defined. But in [SRFI-4](https://srfi.schemers.org/srfi-4/srfi-4.html) there are more bit vectors +types. They all starts with hash. In different SRFI there are more examples of syntax's that start +with hash. This is just a convention everything is using.