From 0c0f972e86a2e38912114c5333f23f9effd37a3b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 11 Aug 2020 13:19:09 +1000 Subject: Cleanup: spelling --- source/blender/blenlib/BLI_string_ref.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/BLI_string_ref.hh') diff --git a/source/blender/blenlib/BLI_string_ref.hh b/source/blender/blenlib/BLI_string_ref.hh index 72803ebecda..e30eccca891 100644 --- a/source/blender/blenlib/BLI_string_ref.hh +++ b/source/blender/blenlib/BLI_string_ref.hh @@ -385,7 +385,7 @@ inline std::string operator+(StringRef a, StringRef b) /* This does not compare StringRef and std::string_view, because of ambiguous overloads. This is * not a problem when std::string_view is only used at api boundaries. To compare a StringRef and a * std::string_view, one should convert the std::string_view to StringRef (which is very cheap). - * Ideally, we only use StringRef in our code to avoid this problem alltogether. */ + * Ideally, we only use StringRef in our code to avoid this problem altogether. */ inline bool operator==(StringRef a, StringRef b) { if (a.size() != b.size()) { -- cgit v1.2.3