Misc typos and whitespace fixes

Found via `codespell -q 3 -I ../fc-word-whitelist.txt -S ./.git,*.po,*.ts,./ChangeLog.txt,./src/3rdParty,./src/Mod/Assembly/App/opendcm,./src/CXX,./src/zipios++,./src/Base/swig*`
This commit is contained in:
luz.paz
2019-03-25 08:06:29 -04:00
committed by wmayer
parent 6bc555c9be
commit c985f9ee79
9 changed files with 30 additions and 32 deletions

View File

@@ -321,7 +321,7 @@
PARAM_TYPE(_param) _src(_param);
/**
* Delcares parameters using the given field as name
* Declares parameters using the given field as name
*
* \arg \c _src: \anchor ParamSrc Macro to generate source variable. The
* signature must be <tt>_src(_param)<\tt>, where \c _param is the tuple
@@ -349,7 +349,7 @@
PARAM_TYPE(_param) _src(_param) = PARAM_FDEF(_param);
/**
* Delcares parameters with initialization to default using the given field as
* Declares parameters with initialization to default using the given field as
* name
*
* \arg \c _src: macro to generate source field. See \ref ParamSrc "here" for
@@ -635,7 +635,7 @@
#define PARAM_ARGS_DEF_(_,_src,_i,_param) \
BOOST_PP_COMMA_IF(_i) PARAM_TYPE(_param) _src(_param)=PARAM_FDEF(_param)
/** Delcare the parameters as function argument list with defaults.
/** Declare the parameters as function argument list with defaults.
*
* \arg \c _src: macro to generate source field. See \ref ParamSrc "here" for
* more details
@@ -654,7 +654,7 @@
#define PARAM_ARGS_(_,_src,_i,_param) \
BOOST_PP_COMMA_IF(_i) PARAM_TYPE(_param) _src(_param)
/** Delcare the parameters as function argument list without defaults.
/** Declare the parameters as function argument list without defaults.
*
* \arg \c _src: macro to generate source field. See \ref ParamSrc "here" for
* more details