From 9d0ad3a44cd1daf9c2c721139989d5b22cfe963b Mon Sep 17 00:00:00 2001 From: Tobias Ulmer Date: Wed, 22 Jan 2014 19:54:08 +0100 Subject: [PATCH] Document e2tool.dsort() Signed-off-by: Tobias Ulmer --- local/e2tool.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/local/e2tool.lua b/local/e2tool.lua index f9c7f67..fc2589d 100644 --- a/local/e2tool.lua +++ b/local/e2tool.lua @@ -1687,11 +1687,11 @@ function e2tool.dlist_recursive(info, result) return t end ---- e2tool.dsort(INFO) -> ARRAY. --- --- Returns an array with the names of all results of the project specified --- by INFO, topologically sorted according to the projects dependency --- information. +--- Calls dlist_recursive() with the default results vector of the project. +-- @param info Info table. +-- @return Vector of results in topological order, or false on error. +-- @return Error object on failure. +-- @see e2tool.dlist_recursive function e2tool.dsort(info) return e2tool.dlist_recursive(info, info.project.default_results) end -- 2.39.5