From e4ac87231e5cf41b86956fd4f06fa3ca1942f4bf Mon Sep 17 00:00:00 2001 From: andy Date: Thu, 27 Sep 2012 13:03:55 +0100 Subject: [PATCH] STYLE: Code comment corrections --- src/lagrangian/intermediate/submodels/SubModelBase.H | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lagrangian/intermediate/submodels/SubModelBase.H b/src/lagrangian/intermediate/submodels/SubModelBase.H index bc073213c7..54b42b5a8a 100644 --- a/src/lagrangian/intermediate/submodels/SubModelBase.H +++ b/src/lagrangian/intermediate/submodels/SubModelBase.H @@ -163,23 +163,23 @@ public: //- Return non-const access to the owner cloud for manipulation CloudType& owner(); - //- Retrieve generic property from sub-model + //- Retrieve generic property from the sub-model template Type getModelProperty(const word& entryName) const; - //- Retrieve generic property from sub-model + //- Retrieve generic property from the sub-model template void getModelProperty(const word& entryName, Type& value) const; - //- Add generic property from sub-model + //- Add generic property to the sub-model template void setModelProperty(const word& entryName, const Type& value); - //- Retrieve generic property from base model + //- Retrieve generic property from the base model template Type getBaseProperty(const word& entryName) const; - //- Add generic property from base model + //- Add generic property to the base model template void setBaseProperty(const word& entryName, const Type& value);