correct spelling in comments for circular_buffer example

This commit is contained in:
Richard Evans
2017-10-06 12:44:29 +10:00
parent a2a85b57d4
commit e655fa6c4d

View File

@@ -20,7 +20,7 @@
// Create a circular buffer with a capacity for 3 integers.
boost::circular_buffer<int> cb(3);
// Insert threee elements into the buffer.
// Insert three elements into the buffer.
cb.push_back(1);
cb.push_back(2);
cb.push_back(3);