From 3bfa4763f76485bde0eedadc580b0d0e12231f4e Mon Sep 17 00:00:00 2001
From: Oleg-designer <sweetletal0@gmail.com>
Date: Mon, 29 Mar 2021 09:57:08 +0300
Subject: [PATCH] ref #3 notificationservice.h add methods description

---
 notificationservice.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/notificationservice.h b/notificationservice.h
index 615c8ed..4788a1f 100644
--- a/notificationservice.h
+++ b/notificationservice.h
@@ -8,7 +8,7 @@
 namespace QmlNotificationService {
 
 /**
- * @brief The NotificationService class
+ * @brief The NotificationService class.
  */
 class NOTIFYSERVICESHARED_EXPORT NotificationService: public QObject
 {
@@ -21,15 +21,15 @@ class NOTIFYSERVICESHARED_EXPORT NotificationService: public QObject
 
 public:
     /**
-     * @brief notify
-     * @return notyfyData for qml
+     * @brief Notify
+     * @return notyfyData for qml.
      */
     NotificationData notify() const;
     NotificationData question() const;
 
     /**
-     * @brief setNotify - add new message for application
-     * @param notify - message data
+     * @brief setNotify - Add new message for application.
+     * @param notify - Message data.
      */
     void setNotify(const NotificationData &notify);
 
@@ -49,13 +49,13 @@ public:
 
     /**
      * @brief getService
-     * @return pointer t oservice
+     * @return pointer to oservice.
      */
     static NotificationService* getService();
 
     /**
      * @brief history
-     * @return list of all notify
+     * @return list of all notify.
      */
     const QList<NotificationData> & history() const;