diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/luarocks/search.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/luarocks/search.lua b/src/luarocks/search.lua index 53439386..f1a82d5b 100644 --- a/src/luarocks/search.lua +++ b/src/luarocks/search.lua | |||
@@ -155,10 +155,11 @@ function search.disk_search(repo, query, results) | |||
155 | return results | 155 | return results |
156 | end | 156 | end |
157 | 157 | ||
158 | --- Perform search on a rocks server. | 158 | --- Perform search on a rocks server or tree. |
159 | -- @param results table: The results table, where keys are package names and | 159 | -- @param results table: The results table, where keys are package names and |
160 | -- versions are tables matching version strings to an array of servers. | 160 | -- versions are tables matching version strings to an array of servers. |
161 | -- @param repo string: The URL of the rocks server. | 161 | -- @param repo string: The URL of a rocks server or |
162 | -- the pathname of a rocks tree (as returned by path.rocks_dir()). | ||
162 | -- @param query table: A table describing the query in dependency | 163 | -- @param query table: A table describing the query in dependency |
163 | -- format (for example, {name = "filesystem", exact_name = false, | 164 | -- format (for example, {name = "filesystem", exact_name = false, |
164 | -- constraints = {op = "~>", version = {1,0}}}, arch = "rockspec"). | 165 | -- constraints = {op = "~>", version = {1,0}}}, arch = "rockspec"). |