소스 검색

fix comment

Paul Sajna 7 년 전
부모
커밋
cdc6209ff4
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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]
 #![feature(core_intrinsics)]
 #![feature(global_allocator)]
 
-///! stdlib implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/stdlib.h.html
 extern crate ctype;
 extern crate errno;
 extern crate platform;