doc: fix typos in code comments
authorYong Wang <wang.yong19@zte.com.cn>
Tue, 29 Nov 2016 22:23:39 +0000 (17:23 -0500)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 6 Dec 2016 14:25:01 +0000 (15:25 +0100)
Signed-off-by: Yong Wang <wang.yong19@zte.com.cn>
Acked-by: John McNamara <john.mcnamara@intel.com>
lib/librte_mempool/rte_mempool.h
lib/librte_ring/rte_ring.h

index 9ccb107..d315d42 100644 (file)
@@ -551,7 +551,7 @@ int rte_mempool_register_ops(const struct rte_mempool_ops *ops);
 /**
  * Macro to statically register the ops of a mempool handler.
  * Note that the rte_mempool_register_ops fails silently here when
- * more then RTE_MEMPOOL_MAX_OPS_IDX is registered.
+ * more than RTE_MEMPOOL_MAX_OPS_IDX is registered.
  */
 #define MEMPOOL_REGISTER_OPS(ops)                                      \
        void mp_hdlr_init_##ops(void);                                  \
index 32b8c8d..e359aff 100644 (file)
@@ -106,7 +106,7 @@ extern "C" {
 
 enum rte_ring_queue_behavior {
        RTE_RING_QUEUE_FIXED = 0, /* Enq/Deq a fixed number of items from a ring */
-       RTE_RING_QUEUE_VARIABLE   /* Enq/Deq as many items a possible from ring */
+       RTE_RING_QUEUE_VARIABLE   /* Enq/Deq as many items as possible from ring */
 };
 
 #ifdef RTE_LIBRTE_RING_DEBUG