Skip to content

Commit

Permalink
Fix typo in documentation of array_pool (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich authored Dec 25, 2022
1 parent 62a41dd commit d30bea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/foonathan/memory/memory_pool_type.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace foonathan
};

/// Tag type defining a memory pool optimized for arrays.
/// It keeps the nodes oredered inside the free list and searches the list for an appropriate memory block.
/// It keeps the nodes ordered inside the free list and searches the list for an appropriate memory block.
/// Array allocations are still pretty slow, if the array gets big enough it can get slower than \c new.
/// Node allocations are still fast, unless there is deallocation in random order.
/// \note Use this tag type only if you really need to have a memory pool!
Expand Down

0 comments on commit d30bea9

Please sign in to comment.