STYLE: fix doxygen-related typos

This commit is contained in:
Mark Olesen
2019-01-18 09:32:36 +01:00
parent c0b11a5298
commit 3c81aec0e2
2 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,7 @@ License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class Class
Foam::ensightensightSurfaceReader Foam::ensightSurfaceReader
Description Description
Ensight format surface reader Ensight format surface reader
@ -181,7 +181,7 @@ public:
( (
const label timeIndex, const label timeIndex,
const label fieldIndex, const label fieldIndex,
const sphericalTensor& reValue = pTraits<sphericalTensor>::zero const sphericalTensor& refValue = pTraits<sphericalTensor>::zero
) const; ) const;
//- Return a symmTensor field at a given time //- Return a symmTensor field at a given time
@ -189,7 +189,7 @@ public:
( (
const label timeIndex, const label timeIndex,
const label fieldIndex, const label fieldIndex,
const symmTensor& reValue = pTraits<symmTensor>::zero const symmTensor& refValue = pTraits<symmTensor>::zero
) const; ) const;
//- Return a tensor field at a given time //- Return a tensor field at a given time
@ -197,7 +197,7 @@ public:
( (
const label timeIndex, const label timeIndex,
const label fieldIndex, const label fieldIndex,
const tensor& reValue = pTraits<tensor>::zero const tensor& refValue = pTraits<tensor>::zero
) const; ) const;
}; };

View File

@ -128,7 +128,7 @@ public:
( (
const label timeIndex, const label timeIndex,
const label fieldIndex, const label fieldIndex,
const sphericalTensor& reValue = pTraits<sphericalTensor>::zero const sphericalTensor& refValue = pTraits<sphericalTensor>::zero
) const = 0; ) const = 0;
//- Return a symmTensor field at a given time //- Return a symmTensor field at a given time
@ -136,7 +136,7 @@ public:
( (
const label timeIndex, const label timeIndex,
const label fieldIndex, const label fieldIndex,
const symmTensor& reValue = pTraits<symmTensor>::zero const symmTensor& refValue = pTraits<symmTensor>::zero
) const = 0; ) const = 0;
//- Return a tensor field at a given time //- Return a tensor field at a given time
@ -144,7 +144,7 @@ public:
( (
const label timeIndex, const label timeIndex,
const label fieldIndex, const label fieldIndex,
const tensor& reValue = pTraits<tensor>::zero const tensor& refValue = pTraits<tensor>::zero
) const = 0; ) const = 0;
}; };