hare

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

commit d59562691351c10ecf7edc41041429cd53251bca
parent 9e671ede2053e86862cae82aad00edaa8b65176c
Author: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Date:   Mon,  2 Jan 2023 14:34:18 +0100

rt/+linux/syscalls: fix small typo

Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>

Diffstat:
Mrt/+linux/syscalls.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rt/+linux/syscalls.ha b/rt/+linux/syscalls.ha @@ -818,7 +818,7 @@ export fn ptrace( addr: uintptr, data: uintptr, ) (u64 | errno) = { - // PTRACE_PEEK* requests write into *data instead of just returing + // PTRACE_PEEK* requests write into *data instead of just returning // the word that they read let result = 0u64; const wrdata = request >= PTRACE_PEEKTEXT && request <= PTRACE_PEEKUSER;