~sircmpwn/hare-users

Remove reference to old bug in allocation section of intro v1 APPLIED

Adam Patterson: 1
 Remove reference to old bug in allocation section of intro

 1 files changed, 1 insertions(+), 3 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~sircmpwn/hare-users/patches/37386/mbox | git am -3
Learn more about email & git

[PATCH] Remove reference to old bug in allocation section of intro Export this patch

---
 content/tutorials/introduction.md | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/content/tutorials/introduction.md b/content/tutorials/introduction.md
index 0faa14c..0b94d05 100644
--- a/content/tutorials/introduction.md
+++ b/content/tutorials/introduction.md
@@ -536,9 +536,7 @@ sections:
      	// Applied example
      	const file = os::open(os::args[1])!;
      	defer io::close(file)!;
      
      	// XXX: There is a known bug here:
      	// https://todo.sr.ht/~sircmpwn/hare/657

      	let buffer: *[65535]u8 = alloc([0...]);
      	defer free(buffer);
      
-- 
2.34.1
Thanks!

To git@git.sr.ht:~sircmpwn/harelang.org
   f873fde..52b7717  master -> master