# HG changeset patch # User Franz Glasner # Date 1626017281 -7200 # Node ID 4d7ad20cb8f9956d7a381405c99e7241558f4ac1 # Parent 0c65aac81807798f5511f63b34320c21bef4457c FIX: Doc strings diff -r 0c65aac81807 -r 4d7ad20cb8f9 configmix/config.py --- a/configmix/config.py Sun Jul 11 17:08:06 2021 +0200 +++ b/configmix/config.py Sun Jul 11 17:28:01 2021 +0200 @@ -222,8 +222,8 @@ return s def getfirstintvar_s(self, *varnames, **kwds): - """Get a (possibly substituted) variable and coerce text to a - number. + """A variant of :meth:`~.getintvar_s` that returns the first found + variable in the list of given variables in `varnames`. """ s = self.getfirstvar_s(*varnames, **kwds) @@ -261,8 +261,8 @@ return s def getfirstboolvar_s(self, *varnames, **kwds): - """Get a (possibly substituted) variable and convert text to a - boolean + """A variant of :meth:`~.getboolvar_s` that returns the first found + variable in the list of given variables in `varnames`. """ s = self.getfirstvar_s(*varnames, **kwds)