]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/sys/unix/net.rs
Various minor/cosmetic improvements to code
[rust.git] / src / libstd / sys / unix / net.rs
index 2d10541752c83b3ca21b1ab5cfdfebf91d340250..d922be520d4be988538b1bb95855474124c83e4e 100644 (file)
@@ -26,7 +26,7 @@
 pub type wrlen_t = size_t;
 
 // See below for the usage of SOCK_CLOEXEC, but this constant is only defined on
-// Linux currently (e.g. support doesn't exist on other platforms). In order to
+// Linux currently (e.g., support doesn't exist on other platforms). In order to
 // get name resolution to work and things to compile we just define a dummy
 // SOCK_CLOEXEC here for other platforms. Note that the dummy constant isn't
 // actually ever used (the blocks below are wrapped in `if cfg!` as well.