exec: fix missing documentation warnings
authorAlexandre Terrasa <alexandre@moz-code.org>
Thu, 20 Nov 2014 01:57:04 +0000 (20:57 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Tue, 25 Nov 2014 21:12:07 +0000 (16:12 -0500)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/standard/exec.nit

index 150ed48..1ee3095 100644 (file)
@@ -92,6 +92,8 @@ end
 class IProcess
        super Process
        super IStream
+
+       # File Descriptor used for the input.
        var stream_in: FDIStream is noinit
 
        redef fun close do stream_in.close
@@ -113,6 +115,8 @@ end
 class OProcess
        super Process
        super OStream
+
+       # File Descriptor used for the output.
        var stream_out: OStream is noinit
 
        redef fun close do stream_out.close
@@ -159,6 +163,9 @@ redef class Sys
 end
 
 redef class NativeString
+       # Execute self as a shell command.
+       #
+       # See the posix function system(3).
        fun system: Int is extern "string_NativeString_NativeString_system_0"
 end