0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-08 03:28:40 +02:00

ircd::util: Fix typo.

This commit is contained in:
Jason Volk 2017-08-23 14:40:03 -06:00
parent ca608402f5
commit 1121d99f18

View file

@ -841,7 +841,7 @@ struct string_view
// (non-standard) intuitive wrapper for remove_suffix.
// Unlike std::string, we can cheaply involve a reference to the removed character
// which still exist.
// which still exists.
const char &pop_back()
{
const char &ret(back());
@ -851,7 +851,7 @@ struct string_view
// (non-standard) intuitive wrapper for remove_prefix.
// Unlike std::string, we can cheaply involve a reference to the removed character
// which still exist.
// which still exists.
const char &pop_front()
{
const char &ret(front());