fixed comment typo
Stefan Schuermans

Stefan Schuermans commited on 2011-12-11 00:11:17
Showing 8 changed files, with 8 additions and 8 deletions.

... ...
@@ -76,7 +76,7 @@ public:
76 76
   PARENT    &m_parent; ///< parent object
77 77
   Directory m_dir;     ///< directory containing list and being tracked
78 78
   List      m_list;    ///< list begin tracked
79
-}; // class ListTracker
79
+}; // class ListTracker<PARENT, TYPE, FIDI>
80 80
 
81 81
 } // namespace Blinker
82 82
 
... ...
@@ -53,7 +53,7 @@ private:
53 53
   const ModuleMgr & operator=(const ModuleMgr &that);
54 54
 
55 55
 public:
56
-  /// callback when requsted time reached
56
+  /// callback when requested time reached
57 57
   virtual void timeCall();
58 58
 
59 59
 protected:
... ...
@@ -47,7 +47,7 @@ ModuleMgr<MODULE>::~ModuleMgr()
47 47
   }
48 48
 }
49 49
 
50
-/// callback when requsted time reached
50
+/// callback when requested time reached
51 51
 template<typename MODULE>
52 52
 void ModuleMgr<MODULE>::timeCall()
53 53
 {
... ...
@@ -69,7 +69,7 @@ void Player::updateConfig()
69 69
     updatePlaylistLight();
70 70
 }
71 71
 
72
-/// callback when requsted time reached
72
+/// callback when requested time reached
73 73
 void Player::timeCall()
74 74
 {
75 75
   // leave if time is not yet ready to next frame
... ...
@@ -62,7 +62,7 @@ public:
62 62
   /// check for update of configuration
63 63
   virtual void updateConfig();
64 64
 
65
-  /// callback when requsted time reached
65
+  /// callback when requested time reached
66 66
   virtual void timeCall();
67 67
 
68 68
 protected:
... ...
@@ -84,7 +84,7 @@ public:
84 84
    */
85 85
   virtual void setFrame(const std::string &stream, stBlinkenFrame *pFrame);
86 86
 
87
-  /// callback when requsted time reached
87
+  /// callback when requested time reached
88 88
   virtual void timeCall();
89 89
 
90 90
   /**
... ...
@@ -125,7 +125,7 @@ void Sender<ADDR, SOCK>::setFrame(const std::string &stream,
125 125
   (void)stream; // unused
126 126
 }
127 127
 
128
-/// callback when requsted time reached
128
+/// callback when requested time reached
129 129
 template<typename ADDR, typename SOCK>
130 130
 void Sender<ADDR, SOCK>::timeCall()
131 131
 {
... ...
@@ -19,7 +19,7 @@ public:
19 19
   virtual ~TimeCallee();
20 20
 
21 21
 public:
22
-  /// callback when requsted time reached
22
+  /// callback when requested time reached
23 23
   virtual void timeCall() = 0;
24 24
 }; // class TimeCallee
25 25
 
26 26