ref: ef60174b7cf8898cedd98b718aae35a1e6097ac2
parent: ae2627db9255d9e4f58cf07afa486aaebd2bba5a
author: Ori Bernstein <[email protected]>
date: Fri Aug 22 07:03:58 EDT 2014
Clean up comment a little bit.
--- a/libstd/sys-freebsd.myr
+++ b/libstd/sys-freebsd.myr
@@ -648,7 +648,7 @@
/*
wraps a syscall argument, converting it to 64 bits for the syscall function. This is
-effectively the same as casting all the args, but shorter than a(writing)
+the same as casting, but more concise than writing castto(int64)
*/
generic a = {x : @t
-> a(x)
--- a/libstd/sys-linux.myr
+++ b/libstd/sys-linux.myr
@@ -601,7 +601,7 @@
/*
wraps a syscall argument, converting it to 64 bits for the syscall function. This is
-effectively the same as casting all the args, but shorter than writing castto(int64)
+the same as casting, but more concise than writing castto(int64)
*/
generic a = {x : @t
-> x castto(uint64)
--- a/libstd/sys-osx.myr
+++ b/libstd/sys-osx.myr
@@ -616,7 +616,7 @@
/*
wraps a syscall argument, converting it to 64 bits for the syscall function. This is
-effectively the same as casting all the args, but shorter than writing castto(int64)
+the same as casting, but more concise than writing castto(int64)
*/
generic a = {x : @t
-> x castto(uint64)