about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorDan Gohman <dev@sunfishcode.online>2021-02-24 10:47:26 -0800
committerDan Gohman <dev@sunfishcode.online>2021-02-24 10:47:26 -0800
commit94e75acf1fd5933ba5821e9b1935796f0bbf23e0 (patch)
tree1c8183a8411190dec27e6a90cc16e8c88a17b4fd /library/std/src
parente66e2635442b47808a5e23db83b461c11d2943fc (diff)
downloadrust-94e75acf1fd5933ba5821e9b1935796f0bbf23e0.tar.gz
rust-94e75acf1fd5933ba5821e9b1935796f0bbf23e0.zip
Mention "wasi" in the comment about "main modules".
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/os/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/mod.rs b/library/std/src/os/mod.rs
index ca8c4c9c420..500e8267cf8 100644
--- a/library/std/src/os/mod.rs
+++ b/library/std/src/os/mod.rs
@@ -3,7 +3,7 @@
 #![stable(feature = "os", since = "1.0.0")]
 #![allow(missing_docs, nonstandard_style, missing_debug_implementations)]
 
-// When documenting libstd we want to show unix/windows/linux modules as these are the "main
+// When documenting libstd we want to show unix/windows/linux/wasi modules as these are the "main
 // modules" that are used across platforms, so all modules are enabled when `cfg(doc)` is set.
 // This should help show platform-specific functionality in a hopefully cross-platform way in the
 // documentation.