mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
ircd::util: Fix typo.
This commit is contained in:
parent
ca608402f5
commit
1121d99f18
1 changed files with 2 additions and 2 deletions
|
@ -841,7 +841,7 @@ struct string_view
|
||||||
|
|
||||||
// (non-standard) intuitive wrapper for remove_suffix.
|
// (non-standard) intuitive wrapper for remove_suffix.
|
||||||
// Unlike std::string, we can cheaply involve a reference to the removed character
|
// 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 &pop_back()
|
||||||
{
|
{
|
||||||
const char &ret(back());
|
const char &ret(back());
|
||||||
|
@ -851,7 +851,7 @@ struct string_view
|
||||||
|
|
||||||
// (non-standard) intuitive wrapper for remove_prefix.
|
// (non-standard) intuitive wrapper for remove_prefix.
|
||||||
// Unlike std::string, we can cheaply involve a reference to the removed character
|
// 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 &pop_front()
|
||||||
{
|
{
|
||||||
const char &ret(front());
|
const char &ret(front());
|
||||||
|
|
Loading…
Reference in a new issue