doc/named-param.dox
changeset 1142 2f479109a71d
parent 440 88ed40ad0d4f
     1.1 --- a/doc/named-param.dox	Mon Mar 30 17:42:30 2015 +0200
     1.2 +++ b/doc/named-param.dox	Thu May 14 16:07:38 2015 +0200
     1.3 @@ -25,7 +25,7 @@
     1.4  Several modern languages provide a convenient way to refer the
     1.5  function parameters by name also when you call the function. It is
     1.6  especially comfortable in case of a function having tons of parameters
     1.7 -with natural default values. Sadly, C++ lack this amenity.
     1.8 +with natural default values. Sadly, C++ lacks this amenity.
     1.9  
    1.10  However, with a crafty trick and with some little
    1.11  inconvenience, it is possible to emulate is.