From 77f6adfb2abdad11d0d8a0b9318672638ea94ddb Mon Sep 17 00:00:00 2001 From: Vuko Vukcevic Date: Fri, 28 Aug 2015 11:45:36 +0200 Subject: [PATCH] Minor formatting --- src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.C | 2 +- src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.H | 6 +++--- .../BlockLduSmoothers/BlockLduSmoother/BlockLduSmoother.C | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.C b/src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.C index 47308bc01..b0c09f25c 100644 --- a/src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.C +++ b/src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.C @@ -79,7 +79,7 @@ Foam::label Foam::dictionaryEntry::endLineNumber() const Foam::ITstream& Foam::dictionaryEntry::stream() const { - FatalIOErrorIn("ITstream& primitiveEntry::stream() const", *this) + FatalIOErrorIn("ITstream& dictionaryEntry::stream() const", *this) << "Attempt to return dictionary entry as a primitive" << abort(FatalIOError); diff --git a/src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.H b/src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.H index a686c43ab..d5b32c56a 100644 --- a/src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.H +++ b/src/foam/db/dictionary/dictionaryEntry/dictionaryEntry.H @@ -27,9 +27,9 @@ Class Description A keyword and a list of tokens is a 'dictionaryEntry'. - An dictionaryEntry can be read, written and printed, and the types and - values of its tokens analysed. A dictionaryEntry is a high-level building - block for data description. It is a front-end for the token parser. + A dictionaryEntry can be read, written and printed, and the types and + values of its tokens analysed. A dictionaryEntry is a high-level building + block for data description. It is a front-end for the token parser. A list of entries can be used as a set of keyword syntax elements, for example. diff --git a/src/foam/matrices/blockLduMatrix/BlockLduSmoothers/BlockLduSmoother/BlockLduSmoother.C b/src/foam/matrices/blockLduMatrix/BlockLduSmoothers/BlockLduSmoother/BlockLduSmoother.C index 67068e34e..9c2577d8a 100644 --- a/src/foam/matrices/blockLduMatrix/BlockLduSmoothers/BlockLduSmoother/BlockLduSmoother.C +++ b/src/foam/matrices/blockLduMatrix/BlockLduSmoothers/BlockLduSmoother/BlockLduSmoother.C @@ -98,10 +98,10 @@ Foam::word Foam::BlockLduSmoother::getName(const dictionary& dict) word name; // handle primitive or dictionary entry - const entry& e = dict.lookupEntry("preconditioner", false, false); + const entry& e = dict.lookupEntry("smoother", false, false); if (e.isDict()) { - e.dict().lookup("preconditioner") >> name; + e.dict().lookup("smoother") >> name; } else { -- 2.11.4.GIT