Fix typos in src/App

This commit is contained in:
luz.paz
2019-07-19 15:18:29 -04:00
committed by wmayer
parent 951d872831
commit 3a1a6eb7d8
18 changed files with 75 additions and 76 deletions

View File

@@ -260,9 +260,9 @@ class FCADLogger(object):
The default output format is:
<timestamp> <tag> <source file>(line number): message
The message is formated using new style Python string formating, e.g.
'test {}'.format(1). It is strongly recommanded to not directly use
Python string formating, but pass additional argument indirectly through
The message is formatted using new style Python string formatting, e.g.
'test {}'.format(1). It is strongly recommended to not directly use
Python string formatting, but pass additional argument indirectly through
various logger print function, because the logger can skip string
evaluation in case the logging level is disabled. For more options,
please consult the docstring of __init__(), catch() and report().
@@ -285,7 +285,7 @@ class FCADLogger(object):
you to define your own levels. The level set is persisted to user
configuration file.
By defult any tag has a log level of 2 for release, and 3 for debug
By default any tag has a log level of 2 for release, and 3 for debug
build.
'''
@@ -325,7 +325,7 @@ class FCADLogger(object):
* lineno (True): whether to print source file and line number
* parent (None): provide a parent logger, so that the log printting will
* parent (None): provide a parent logger, so that the log printing will
check for parent's log level in addition of its own
* title ('FreeCAD'): message box title used by report()
@@ -363,8 +363,8 @@ class FCADLogger(object):
This function accepts additional positional and keyword arguments,
which are forward to string.format() to generate the logging
message. It is strongly recommanded to not directly use Python
string formating, but pass additional arguments here, because the
message. It is strongly recommended to not directly use Python
string formatting, but pass additional arguments here, because the
printer can skip string evaluation in case the logging level is
disabled.
'''
@@ -379,8 +379,8 @@ class FCADLogger(object):
This function accepts additional positional and keyword arguments,
which are forward to string.format() to generate the logging
message. It is strongly recommanded to not directly use Python
string formating, but pass additional arguments here, because the
message. It is strongly recommended to not directly use Python
string formatting, but pass additional arguments here, because the
printer can skip string evaluation in case the logging level is
disabled.
'''
@@ -395,8 +395,8 @@ class FCADLogger(object):
This function accepts additional positional and keyword arguments,
which are forward to string.format() to generate the logging
message. It is strongly recommanded to not directly use Python
string formating, but pass additional arguments here, because the
message. It is strongly recommended to not directly use Python
string formatting, but pass additional arguments here, because the
printer can skip string evaluation in case the logging level is
disabled.
'''
@@ -413,8 +413,8 @@ class FCADLogger(object):
This function accepts additional positional and keyword arguments,
which are forward to string.format() to generate the logging
message. It is strongly recommanded to not directly use Python
string formating, but pass additional arguments here, because the
message. It is strongly recommended to not directly use Python
string formatting, but pass additional arguments here, because the
printer can skip string evaluation in case the logging level is
disabled.
'''
@@ -431,8 +431,8 @@ class FCADLogger(object):
This function accepts additional positional and keyword arguments,
which are forward to string.format() to generate the logging
message. It is strongly recommanded to not directly use Python
string formating, but pass additional arguments here, because the
message. It is strongly recommended to not directly use Python
string formatting, but pass additional arguments here, because the
printer can skip string evaluation in case the logging level is
disabled.
'''