mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: remove extra '(' in usage information, doubled ';;'
This commit is contained in:
@ -98,9 +98,9 @@ Foam::argList::initValidTables::initValidTables()
|
||||
argList::addOption
|
||||
(
|
||||
"hostRoots",
|
||||
"(((host1 dir1) .. (hostN dirN))",
|
||||
"slave root directories (per host) for distributed running. "
|
||||
"The host specification can use a regex.",
|
||||
"((host1 dir1) .. (hostN dirN))",
|
||||
"Per-host slave root directories for distributed running."
|
||||
" The host specification can be a regex.",
|
||||
true // advanced option
|
||||
);
|
||||
validParOptions.set
|
||||
|
||||
@ -291,7 +291,7 @@ public:
|
||||
inline void readIfPresent(Liquid& l, const dictionary& dict);
|
||||
|
||||
//- Write the function coefficients
|
||||
virtual void writeData(Ostream& os) const = 0;;
|
||||
virtual void writeData(Ostream& os) const = 0;
|
||||
|
||||
//- Write the data for each of the property functions
|
||||
template<class Liquid>
|
||||
|
||||
@ -83,7 +83,7 @@ void Foam::waveModel::initialiseGeometry()
|
||||
for (label paddlei = 0; paddlei < nPaddle_; ++paddlei)
|
||||
{
|
||||
xPaddle_[paddlei] = xMid;
|
||||
yPaddle_[paddlei] = paddlei*paddleDy + yMin + 0.5*paddleDy;;
|
||||
yPaddle_[paddlei] = paddlei*paddleDy + yMin + 0.5*paddleDy;
|
||||
}
|
||||
|
||||
// Local face centres
|
||||
|
||||
Reference in New Issue
Block a user