From: regehr Date: Wed, 15 Apr 2009 03:01:35 +0000 (+0000) Subject: spell fix X-Git-Tag: rc_6_tinyos_2_1_1~410 X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=commitdiff_plain;h=649301ea378cd6515b70a6e38215522df50273de;p=tinyos-2.x.git spell fix --- diff --git a/tos/interfaces/ResourceQueue.nc b/tos/interfaces/ResourceQueue.nc index 3b135b85..74a77ede 100644 --- a/tos/interfaces/ResourceQueue.nc +++ b/tos/interfaces/ResourceQueue.nc @@ -43,7 +43,7 @@ interface ResourceQueue { async command bool isEmpty(); /** - * Check to see if a given cleint id has already been enqueued + * Check to see if a given client id has already been enqueued * and is waiting to be processed. * * @return TRUE if the client id is in the queue.
@@ -52,17 +52,17 @@ interface ResourceQueue { async command bool isEnqueued(resource_client_id_t id); /** - * Retreive the cleint id of the next resource in the queue. + * Retreive the client id of the next resource in the queue. * If the queue is empty, the return value is undefined. * - * @return The cleint id at the head of the queue. + * @return The client id at the head of the queue. */ async command resource_client_id_t dequeue(); /** - * Enqueue a cleint id + * Enqueue a client id * - * @param cleintId - the cleint id to enqueue + * @param clientId - the client id to enqueue * @return SUCCESS if the client id was enqueued successfully
* EBUSY if it has already been enqueued. */