hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 2d498a17ab8f34b2182a029b3f4acc0a865158fa
parent 9eef27519ffb59ed1e8b11dcf7cb58a62ddcb262
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 20 Apr 2021 14:16:54 -0400

bufio: clarify purpose of bufstream type

Diffstat:
Mbufio/buffered.ha | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/bufio/buffered.ha b/bufio/buffered.ha @@ -4,6 +4,8 @@ use errors; use io; use strings; +// This type is not stable, and is exported for internal use in the standard +// library. export type bufstream = struct { stream: io::stream, source: *io::stream,