From 5e702fa001c846ec7ffbe963ef86a015e76b911b Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 6 May 2019 16:26:40 -0700 Subject: [PATCH] Update a comment to refer to WASI. --- src/host.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host.rs b/src/host.rs index ec025316ae..eea3985edb 100644 --- a/src/host.rs +++ b/src/host.rs @@ -224,7 +224,7 @@ pub const RIGHTS_ALL: __wasi_rights_t = __WASI_RIGHT_FD_DATASYNC | __WASI_RIGHT_SOCK_SHUTDOWN; // Block and character device interaction is outside the scope of -// CloudABI. Simply allow everything. +// WASI. Simply allow everything. pub const RIGHTS_BLOCK_DEVICE_BASE: __wasi_rights_t = RIGHTS_ALL; pub const RIGHTS_BLOCK_DEVICE_INHERITING: __wasi_rights_t = RIGHTS_ALL; pub const RIGHTS_CHARACTER_DEVICE_BASE: __wasi_rights_t = RIGHTS_ALL;