]> granicus.if.org Git - apache/commitdiff
Typo in comment
authorChristophe Jaillet <jailletc36@apache.org>
Wed, 15 May 2013 19:39:16 +0000 (19:39 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Wed, 15 May 2013 19:39:16 +0000 (19:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1483044 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/lua_dbd.c

index 350ec2474b5a7c49590e5964c701b870445c9097..cc29b37cb6c7a49d5697a47e139bed1bed8efe37 100644 (file)
@@ -377,7 +377,7 @@ int lua_db_prepared_select(lua_State *L)
     st = (lua_db_prepared_statement*) lua_topointer(L, -1);
     
     /* Check if we got enough variables passed on to us.
-     * This, of course, only works for prepped statements made through lua. */
+     * This, of course, only works for prepared statements made through lua. */
     have = lua_gettop(L) - 2;
     if (st->variables != -1 && have < st->variables ) {
         lua_pushboolean(L, 0);
@@ -468,7 +468,7 @@ int lua_db_prepared_query(lua_State *L)
     st = (lua_db_prepared_statement*) lua_topointer(L, -1);
     
     /* Check if we got enough variables passed on to us.
-     * This, of course, only works for prepped statements made through lua. */
+     * This, of course, only works for prepared statements made through lua. */
     have = lua_gettop(L) - 2;
     if (st->variables != -1 && have < st->variables ) {
         lua_pushboolean(L, 0);