Skip to content

Commit

Permalink
Merge pull request #3532 from cgundogan/pr/ng_pktbuf_static/docfix
Browse files Browse the repository at this point in the history
ng_pktbuf: minor doc fixes
  • Loading branch information
miri64 committed Jul 31, 2015
2 parents 4c4e54a + 58b672f commit 0bdd331
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sys/include/net/ng_pktbuf.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ ng_pktsnip_t *ng_pktbuf_mark(ng_pktsnip_t *pkt, size_t size, ng_nettype_t type);
* @pre ng_pktsnip_t::data of @p pkt is in the packet buffer.
*
* @details If enough memory is available behind it or @p size is smaller than
* the original size the packet then ng_pktsnip_t::data of @p pkt will
* the original size of the packet then ng_pktsnip_t::data of @p pkt will
* not be moved. Otherwise, it will be moved. If no space is available
* nothing happens.
*
Expand Down Expand Up @@ -156,7 +156,7 @@ void ng_pktbuf_release(ng_pktsnip_t *pkt);
* @param[in] pkt The packet you want to write into.
*
* @return The (new) pointer to the pkt.
* @return NULL, if ng_pktsnip_t::users of @p pkt > 1 and if there is not anough
* @return NULL, if ng_pktsnip_t::users of @p pkt > 1 and if there is not enough
* space in the packet buffer.
*/
ng_pktsnip_t *ng_pktbuf_start_write(ng_pktsnip_t *pkt);
Expand Down Expand Up @@ -201,7 +201,7 @@ void ng_pktbuf_stats(void);
bool ng_pktbuf_is_empty(void);

/**
* @brief Checks if the implenation's internal invariants still uphold
* @brief Checks if the implementation's internal invariants still uphold
*
* @return true, the packet buffer is sane.
* @return false, the packet buffer is insane.
Expand Down

0 comments on commit 0bdd331

Please sign in to comment.