From 4381d87004a98ea5977af348223483d5a907a3f1 Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Sat, 23 Mar 2024 21:12:08 +0100 Subject: [PATCH] add inner link --- docs/docs/scheme-intro/streams.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/scheme-intro/streams.md b/docs/docs/scheme-intro/streams.md index f582014f..03fe325b 100644 --- a/docs/docs/scheme-intro/streams.md +++ b/docs/docs/scheme-intro/streams.md @@ -13,8 +13,8 @@ The base of those data structures are two expressions `delay` and `force`. The result of a delay is often called a Promise. -To create a lazy pair, you use cons with the first element (`car`) and the rest (`cdr`) is a delay -expression: +To create a lazy [pair](/docs/scheme-intro/data-types#pairs), you use cons with the first element +(`car`) and the rest (`cdr`) is a delay expression: ```scheme (define s (cons 1 (delay 2)))