Stefan Schuermans commited on 2011-12-11 21:03:07
Showing 2 changed files, with 3 additions and 3 deletions.
... | ... |
@@ -120,7 +120,7 @@ protected: |
120 | 120 |
|
121 | 121 |
/** |
122 | 122 |
* @brief send protocol data to address |
123 |
- * @param[in] data protcol data of frame (empty if unknown) |
|
123 |
+ * @param[in] data protocol data of frame (empty if unknown) |
|
124 | 124 |
* @param[in] addr address to send to |
125 | 125 |
*/ |
126 | 126 |
void sendProto(const std::string &data, const ADDR &addr) const; |
... | ... |
@@ -128,7 +128,7 @@ protected: |
128 | 128 |
/** |
129 | 129 |
* @brief convert frame to protocol data |
130 | 130 |
* @param[in] pFrame frame (NULL for none) |
131 |
- * @param[out] data protcol data |
|
131 |
+ * @param[out] data protocol data |
|
132 | 132 |
*/ |
133 | 133 |
void frame2data(stBlinkenFrame *pFrame, std::string &data) const; |
134 | 134 |
|
... | ... |
@@ -329,7 +329,7 @@ void Sender<ADDR, SOCK>::frame2data(stBlinkenFrame *pFrame, |
329 | 329 |
} |
330 | 330 |
proto = m_fileProtocol.m_obj.m_proto; |
331 | 331 |
|
332 |
- // convert frame to protcol data |
|
332 |
+ // convert frame to protocol data |
|
333 | 333 |
if (pFrame) |
334 | 334 |
len = BlinkenFrameToNetwork(pFrame, proto, buf, sizeof(buf)); |
335 | 335 |
else |
336 | 336 |