]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
DOC: fix some broken unexpected unicode chars in the Lua doc.
authorWilly Tarreau <w@1wt.eu>
Mon, 28 Sep 2015 13:39:10 +0000 (15:39 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 28 Sep 2015 13:39:10 +0000 (15:39 +0200)
A few chars didn't render properly in some terminals and had no
reason for being there.

doc/lua-api/index.rst

index 3aab00c227ff4af089a2adfec1048d082e3f513b..1f02541ffe1b4e35e4e828c6819ade9c486e5668 100644 (file)
@@ -273,7 +273,7 @@ Core class
   input.
 
   :param string name: is the name of the converter.
-  :param table actions: is a table of string describing the HAProxy actions who
+  :param table actions: is a table of string describing the HAProxy actions who
                         want to register to. The expected actions are 'tcp-req',
                         'tcp-res', 'http-req' or 'http-res'.
   :param function func: is the Lua function called to work as converter.
@@ -288,7 +288,7 @@ Core class
   * **txn** (*class TXN*): this is a TXN object used for manipulating the
             current request or TCP stream.
 
-  Here, an exemple of action registration. the action juste send à 'Hello world'
+  Here, an exemple of action registration. the action juste send an 'Hello world'
   in the logs.
 
 .. code-block:: lua
@@ -389,7 +389,7 @@ Core class
   input according with the required mode.
 
   :param string name: is the name of the converter.
-  :param string mode: is string describing the required mode. Only 'tcp' or
+  :param string mode: is string describing the required mode. Only 'tcp' or
                       'http' are allowed.
   :param function func: is the Lua function called to work as converter.
 
@@ -403,7 +403,7 @@ Core class
   * **txn** (*class AppletTCP*) or (*class AppletHTTP*): this is an object used
             for manipulating the current HTTP request or TCP stream.
 
-  Here, an exemple of service registration. the service just send à 'Hello world'
+  Here, an exemple of service registration. the service just send an 'Hello world'
   as an http response.
 
 .. code-block:: lua