From d4878b707e8e71d1ce3d913d52fc0dc185c75302 Mon Sep 17 00:00:00 2001 From: ArshadAriff <113685884+ArshadAriff@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:49:36 +0530 Subject: [PATCH] Update input-output.md updated docs --- docs/docs/scheme-intro/input-output.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs/scheme-intro/input-output.md b/docs/docs/scheme-intro/input-output.md index 9250fab1..43b80252 100644 --- a/docs/docs/scheme-intro/input-output.md +++ b/docs/docs/scheme-intro/input-output.md @@ -345,7 +345,8 @@ Some scheme implementations have `with-input-from-string` procedure: ;; ==> 10 (1 2 3 4) ``` -The procedure `with-input-from-string` changes the current-input-port so you can use read without an argument. +The procedure `with-input-from-string` changes the current-input-port so you can use `read` without +an argument. Another useful procedure that some Scheme implementations have is `read-all`. It read all the S-Expressions from a port and return them as a list.