Changed the variable name 'nb_elements' to 'nb_lines' for better clarity

This commit is contained in:
Celine Mercier
2015-08-26 10:52:19 +02:00
parent 8ff3488926
commit 3f81dc0173
5 changed files with 16 additions and 16 deletions

View File

@ -133,7 +133,7 @@ size_t obi_get_platform_header_size();
* @param dms a pointer on an OBIDMS
* @param column_name the name of the new column
* @param type the OBIType code used to create the column
* @param nb_elements the number of elements to be stored
* @param nb_lines the number of lines to be stored
*
* @since May 2015
* @author Eric Coissac (eric.coissac@metabarcoding.org)
@ -141,7 +141,7 @@ size_t obi_get_platform_header_size();
OBIDMS_column_p obi_create_column(OBIDMS_p dms,
const char* column_name,
OBIType_t type,
size_t nb_elements,
size_t nb_lines,
size_t nb_elements_per_line,
const char* elements_names);