From 8d1e95827535eec89d11dad3198df6b82b86d23f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Aleksandrovi=C4=8D=20Klimov?= Date: Wed, 27 Jan 2021 15:43:37 +0100 Subject: [PATCH] Make code doc more readable Co-authored-by: Julian Brost --- lib/icinga/checkable-notification.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/icinga/checkable-notification.cpp b/lib/icinga/checkable-notification.cpp index 7bdfaa67c..cd0c497f4 100644 --- a/lib/icinga/checkable-notification.cpp +++ b/lib/icinga/checkable-notification.cpp @@ -242,11 +242,11 @@ bool Checkable::NotificationReasonApplies(NotificationType type) } /** - * Returns whether *this not allows sending a notification of type type right now. + * Checks if notifications of a given type should be suppressed for this Checkable at the moment. * - * @param type The type of notification to send (or not to send). + * @param type The notification type for which to query the suppression status. * - * @return Whether not to send the notification. + * @return true if no notification of this type should be sent. */ bool Checkable::NotificationReasonSuppressed(NotificationType type) {