summaryrefslogtreecommitdiffstats
path: root/laugeas.c
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-09-20 11:15:44 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2012-09-20 11:15:44 +0200
commit0ba60017632282384938d851e5a056b92b9b0e17 (patch)
treeb2862c4c7a455d9eded7b436ae444aa70d6ac2ed /laugeas.c
parent209b2f995e54088881b492e22a9336dbc475537c (diff)
downloadlua-augeas-0ba60017632282384938d851e5a056b92b9b0e17.tar.bz2
lua-augeas-0ba60017632282384938d851e5a056b92b9b0e17.tar.xz
Fix whitespace damage
Diffstat (limited to 'laugeas.c')
-rw-r--r--laugeas.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/laugeas.c b/laugeas.c
index 1133c27..cd9a553 100644
--- a/laugeas.c
+++ b/laugeas.c
@@ -1,7 +1,7 @@
/*
--- Lua wrapper for Augeas library.
--
--- In general, the functions map straight to the C library. See the
+-- In general, the functions map straight to the C library. See the
-- descriptions below for details.
*/
#include <stdlib.h>
@@ -221,7 +221,7 @@ static int Paug_match(lua_State *L)
n = aug_match(a, path, &match);
if (n < 0)
return pusherror(L, a, path);
-
+
lua_newtable(L);
for (i = 0; i < n; i++) {
lua_pushnumber(L, i+1);
@@ -291,7 +291,7 @@ static const luaL_reg Paug_methods[] = {
--- Initializes the library.
--
-- * `params` Table of initialization parameters; all optional. `root` path to
--- Augeas, `loadpath` to Augeas lenses, and string/boolean pairs for the
+-- Augeas, `loadpath` to Augeas lenses, and string/boolean pairs for the
-- flags in the Taug_flagmap array.
-- * `[return]` augeas object, used as first parameter in subsequent function
-- calls