STYLE: code spelling and formatting corrections

This commit is contained in:
andy
2011-10-20 15:26:30 +01:00
parent 6c0ea9d1b6
commit 3b0e45371e

View File

@ -202,10 +202,7 @@ public:
//- Return clone //- Return clone
autoPtr<basicSource> clone() const autoPtr<basicSource> clone() const
{ {
notImplemented notImplemented("autoPtr<basicSource> clone() const");
(
"autoPtr<basicSource> clone() const"
);
return autoPtr<basicSource>(NULL); return autoPtr<basicSource>(NULL);
} }
@ -273,7 +270,7 @@ public:
//- Return const access to the mesh database //- Return const access to the mesh database
inline const fvMesh& mesh() const; inline const fvMesh& mesh() const;
//- Return dictionay //- Return dictionary
inline const dictionary& dictCoeffs() const; inline const dictionary& dictCoeffs() const;
//- Return const access to the source active flag //- Return const access to the source active flag
@ -340,7 +337,6 @@ public:
//- Read source dictionary //- Read source dictionary
virtual bool read(const dictionary& dict) = 0; virtual bool read(const dictionary& dict) = 0;
}; };