STYLE: spelling, doxygen

This commit is contained in:
Mark Olesen 2017-11-09 11:04:34 +01:00
parent 59e8c39747
commit 166f62f19d
6 changed files with 12 additions and 12 deletions

View File

@ -363,7 +363,7 @@ if
if (pFaces[LINER][0].size() != newLinerFaces.size())
{
Info<< "Transfered " << pFaces[LINER][0].size() - newLinerFaces.size()
Info<< "Transferred " << pFaces[LINER][0].size() - newLinerFaces.size()
<< " faces from liner region to cylinder head" << endl;
pFaces[LINER][0] = newLinerFaces;
}
@ -392,7 +392,7 @@ if
if (pFaces[CYLINDERHEAD][0].size() != newCylinderHeadFaces.size())
{
Info<< "Transfered faces from cylinder-head region to linder" << endl;
Info<< "Transferred faces from cylinder-head region to linder" << endl;
pFaces[CYLINDERHEAD][0] = newCylinderHeadFaces;
}
}

View File

@ -97,7 +97,7 @@ Foam::token::compound& Foam::token::transferCompoundToken(const Istream& is)
if (data_.compoundPtr->empty())
{
FatalIOErrorInFunction(is)
<< "compound has already been transfered from token\n "
<< "compound has already been transferred from token\n "
<< info() << abort(FatalIOError);
}
else

View File

@ -249,8 +249,8 @@ public:
//- Return root path
inline const fileName& rootPath() const;
//- Return distributed flag (i.e. are rootPaths different on
// different machines)
//- Return distributed flag
//- (i.e. are rootPaths different on different machines)
inline bool distributed() const;
//- Return case name (parallel run) or global case (serial run)

View File

@ -601,7 +601,7 @@ bool Foam::fileOperations::uncollatedFileOperation::read
if (masterOnly && Pstream::parRun())
{
// Master reads headerclassname from file. Make sure this gets
// transfered as well as contents.
// transferred as well as contents.
Pstream::scatter(io.headerClassName());
Pstream::scatter(io.note());

View File

@ -176,7 +176,7 @@ void Foam::Cloud<ParticleType>::move
pIter().stepFraction() = 0;
}
// List of lists of particles to be transfered for all of the
// List of lists of particles to be transferred for all of the
// neighbour processors
List<IDLList<ParticleType>> particleTransferLists
(
@ -292,19 +292,19 @@ void Foam::Cloud<ParticleType>::move
pBufs.finishedSends(allNTrans);
bool transfered = false;
bool transferred = false;
for (const label n : allNTrans)
{
if (n)
{
transfered = true;
transferred = true;
break;
}
}
reduce(transfered, orOp<bool>());
reduce(transferred, orOp<bool>());
if (!transfered)
if (!transferred)
{
break;
}

View File

@ -217,7 +217,7 @@ private:
//- Name of the radiative heat flux field
const word qrName_;
//- Name of the species on which the mass transfered (default H2O)
//- Name of the species on which the mass transferred (default H2O)
const word specieName_;