diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-11-19 09:14:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-11-19 09:14:20 +0200 |
commit | 1af2a51508e989956414f55240923a11a938ec6d (patch) | |
tree | 09321ce61f3dfb2b59efa83be11c9f2dc1ac6885 | |
parent | 84adbc0a134998b6c50bd951d3805138345530f7 (diff) |
Fix typo
-rw-r--r-- | libbutl/small-vector.mxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/small-vector.mxx b/libbutl/small-vector.mxx index ca44ed7..eb1223e 100644 --- a/libbutl/small-vector.mxx +++ b/libbutl/small-vector.mxx @@ -34,7 +34,7 @@ LIBBUTL_MODEXPORT namespace butl // Size keeps track of the number of elements that are constructed in // the buffer. Size equal N + 1 means the buffer is not allocated. // - // Note that the names are decorated in order no to conflict with + // Note that the names are decorated in order not to conflict with // std::vector interface. // alignas (alignof (T)) char data_[sizeof (T) * N]; |