Browse Source

fix comment

Paul Sajna 7 years ago
parent
commit
cdc6209ff4
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/stdlib/src/lib.rs

+ 2 - 1
src/stdlib/src/lib.rs

@@ -1,8 +1,9 @@
+//! stdlib implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/stdlib.h.html
+
 #![no_std]
 #![no_std]
 #![feature(core_intrinsics)]
 #![feature(core_intrinsics)]
 #![feature(global_allocator)]
 #![feature(global_allocator)]
 
 
-///! stdlib implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/stdlib.h.html
 extern crate ctype;
 extern crate ctype;
 extern crate errno;
 extern crate errno;
 extern crate platform;
 extern crate platform;