Doc fix
[libcds.git] / cds / memory / pool_allocator.h
index b45f955ab576bbae7ce3a15cd9146e0925b41b92..d292bc7020da20e78e37bc6e71b6d4f5fb5f6008 100644 (file)
@@ -17,7 +17,7 @@ namespace cds { namespace memory {
 
         Template arguments:
         - \p T - value type
-        - \p Accessor - a functor to access to pool object. The pool has the following interface:
+        - \p Accessor - a functor to access to the pool object. The pool has the following interface:
             \code
             template <typename T>
             class pool {
@@ -29,7 +29,7 @@ namespace cds { namespace memory {
 
         <b>Usage</b>
 
-            Suppose, we have got a pool with interface above. Usually, the pool is a static object:
+            Suppose, we have a pool with interface above. Usually, the pool is a static object:
             \code
                 static pool<Foo>     thePool;
             \endcode