mirror of https://gitee.com/bigwinds/arangodb
fixed doxygen errors
This commit is contained in:
parent
9cbd8e4707
commit
af4be86cef
|
@ -33,6 +33,7 @@ dist_man_MANS += \
|
|||
################################################################################
|
||||
|
||||
DOXYGEN = \
|
||||
Doxygen/js/actions/api-aal.c \
|
||||
Doxygen/js/actions/api-collection.c \
|
||||
Doxygen/js/actions/api-cursor.c \
|
||||
Doxygen/js/actions/api-edges.c \
|
||||
|
|
|
@ -848,11 +848,7 @@ static v8::Handle<v8::Value> JS_ListTree (v8::Arguments const& argv) {
|
|||
uint32_t j = 0;
|
||||
for (size_t i = 0; i < list._length; ++i) {
|
||||
const char* f = list._buffer[i];
|
||||
|
||||
if (*f != '\0') {
|
||||
// don't add empty names
|
||||
result->Set(j++, v8::String::New(f));
|
||||
}
|
||||
result->Set(j++, v8::String::New(f));
|
||||
}
|
||||
|
||||
TRI_DestroyVectorString(&list);
|
||||
|
@ -916,7 +912,7 @@ static v8::Handle<v8::Value> JS_UnzipFile (v8::Arguments const& argv) {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief zips a file
|
||||
///
|
||||
/// @FUN{fs.zip(@FA{filename}, @FA{files})
|
||||
/// @FUN{fs.zip(@FA{filename}, @FA{files})}
|
||||
///
|
||||
/// Stores the files specified by @FA{files} in the zip file @FA{filename}.
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue