From 8478e832320b567c5cc1bc194e89edcc7f4716a0 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Wed, 4 Jan 2012 16:41:53 -0500 Subject: [PATCH] lib: add missing documentation synopsis on some modules Signed-off-by: Jean Privat --- lib/opts.nit | 3 +++ lib/standard/environ.nit | 1 + lib/standard/time.nit | 1 + src/icode/icode.nit | 1 + src/icode/icode_tools.nit | 1 + 5 files changed, 7 insertions(+) diff --git a/lib/opts.nit b/lib/opts.nit index 59391cd..1d085b8 100644 --- a/lib/opts.nit +++ b/lib/opts.nit @@ -11,6 +11,9 @@ # You are allowed to redistribute it and sell it, alone or is a part of # another product. +# Manage options on the command line +module opts + # Super class of all option's class class Option # Names for the option (including long and short ones) diff --git a/lib/standard/environ.nit b/lib/standard/environ.nit index 80afabe..9c584de 100644 --- a/lib/standard/environ.nit +++ b/lib/standard/environ.nit @@ -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 diff --git a/lib/standard/time.nit b/lib/standard/time.nit index a1f3424..195157f 100644 --- a/lib/standard/time.nit +++ b/lib/standard/time.nit @@ -10,6 +10,7 @@ # You are allowed to redistribute it and sell it, alone or is a part of # another product. +# Manage time and dates package time import kernel diff --git a/src/icode/icode.nit b/src/icode/icode.nit index ec6ddbf..0c6fcce 100644 --- a/src/icode/icode.nit +++ b/src/icode/icode.nit @@ -15,6 +15,7 @@ # limitations under the License. # Nit intermediate code representation +module icode import icode_base import icode_tools import icode_builder diff --git a/src/icode/icode_tools.nit b/src/icode/icode_tools.nit index cfe1992..1071959 100644 --- a/src/icode/icode_tools.nit +++ b/src/icode/icode_tools.nit @@ -15,6 +15,7 @@ # limitations under the License. # Tools to manipulate intermediace nit code representation +module icode_tools import icode_builder # A simple visitor to visit icode structures -- 1.7.9.5