Fix typos and formatting in the base/utils docs

This commit is contained in:
Daniel Thayer 2013-10-16 20:41:56 -05:00
parent c224fbe7f8
commit 92dc8e5880
13 changed files with 107 additions and 69 deletions

View file

@ -42,8 +42,8 @@ export {
## Returns: The value at the end of the queue.
global peek: function(q: Queue): any;
## Merge two queue's together. If any settings are applied
## to the queues, the settings from q1 are used for the new
## Merge two queues together. If any settings are applied
## to the queues, the settings from *q1* are used for the new
## merged queue.
##
## q1: The first queue. Settings are taken from here.
@ -64,8 +64,8 @@ export {
##
## q: The queue.
##
## ret: A vector containing the
## current contents of q as the type of ret.
## ret: A vector containing the current contents of the queue
## as the type of ret.
global get_vector: function(q: Queue, ret: vector of any);
}