Merge branch 'master' into google
[mdictionary] / src / mdictionary / backbone / Bookmarks.h
index 74534a5..3172377 100644 (file)
@@ -49,8 +49,8 @@ class BookmarkTranslation;
 /*! Bookmarks are a way to store words that You think You will need to search
   for often.
 
-  When You add bookmark (by clicking on "star" in words list) You add it to
-  special list with cached translations from all available dictionaries so
+  When You add a bookmark (by clicking on "star" in words list) You add it to
+  a special list with cached translations from all available dictionaries so
   You can search for them quickly even when You delete corresponding dict.
   */
 class Bookmarks : public AccentsNormalizer {
@@ -63,7 +63,7 @@ public:
     */
     void add(Translation* translation);
 
-    /*! Removes word and corresponding translation cache from bookmark list
+    /*! Removes word and corresponding translation cache from bookmarks list
         \param translation translation to be removed
     */
     void remove(Translation* translation);
@@ -74,7 +74,7 @@ public:
     QList<Translation*> list();
 
     /*! Searches in bookmarks for a given word (wildcards may apply '*' and '?')
-      \param word to search for
+      \param word word to search for
       \return list of matching Translation objects
       */
     QList<Translation*> searchWordList(QString word);
@@ -92,7 +92,7 @@ public:
 
 
     /*! \return true if a given word is already in bookmarks
-      \param word to check
+      \param word word to check
       */
     bool inBookmarks(QString word);