Skip to content

Commit

Permalink
fix typo, improve doc
Browse files Browse the repository at this point in the history
  • Loading branch information
LudwigKnuepfer committed Dec 19, 2013
1 parent 6eb829c commit 13bb8df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/include/lifo.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
* @long This LIFO implementation very efficiently handles
* integer values. The caveat is that it can only handle
* values between 0 and its own size -1. Also it can only
* handle up to one element of each value. I.e. you can
* not insert a value twice or the LIFO will break.
* handle up to one element of each value. If you insert
* a value twice the LIFO will break.
*/

#ifndef __LIFO_H
Expand Down Expand Up @@ -55,7 +55,7 @@ void lifo_insert(int *array, int i);
* @param array: an integer array
*
* @return: -1 if the lifo is empty, the least recently
* inserted elment otherwise
* inserted element otherwise
*/
int lifo_get(int *array);

Expand Down

0 comments on commit 13bb8df

Please sign in to comment.