Skip to content

Commit

Permalink
add inner link
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Mar 23, 2024
1 parent 7d2faee commit 4381d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/scheme-intro/streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit 4381d87

Please sign in to comment.