From e90a3c179f992cff8a687494a15528cc85577103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 3 Jun 2013 06:36:37 +0200 Subject: [PATCH] doc: minor tweaks of --doc output --- lib/checkassert.h | 4 ++-- lib/checkassignif.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/checkassert.h b/lib/checkassert.h index 78062f1f0..0df794da8 100644 --- a/lib/checkassert.h +++ b/lib/checkassert.h @@ -64,11 +64,11 @@ private: } static std::string myName() { - return "Side Effects in asserts"; + return "Assert"; } std::string classInfo() const { - return "Warn if side effects in assert statements \n"; + return "Warn if there are side effects in assert statements (since this cause different behaviour in debug/release builds).\n"; } }; /// @} diff --git a/lib/checkassignif.h b/lib/checkassignif.h index 0f40f757f..a665a9291 100644 --- a/lib/checkassignif.h +++ b/lib/checkassignif.h @@ -93,7 +93,7 @@ private: } static std::string myName() { - return "Match assignments and conditions"; + return "AssignIf"; } std::string classInfo() const {