lib: add missing documentation synopsis on some modules
[nit.git] / lib / standard / environ.nit
index 8a0c667..9c584de 100644 (file)
@@ -11,6 +11,7 @@
 # You  are  allowed  to  redistribute it and sell it, alone or is a part of
 # another product.
 
+# Acces of the environement variables of the process
 import symbol
 
 # TODO prevoir une structure pour recup tout un environ, le modifier et le passer a process
@@ -23,8 +24,6 @@ redef class Symbol
                # FIXME: There is no proper way to handle NULL C string yet. What a pitty.
                var nulstr = once ("".to_cstring.get_environ)
                if res != nulstr then
-                       "env {self}=".output
-                       res.output
                        return new String.from_cstring(res)
                else
                        return ""