From 0a3a2a67f059c55f506e9a0c39526786dbd8f695 Mon Sep 17 00:00:00 2001 From: Jan Schultke Date: Tue, 17 Feb 2026 08:51:56 +0100 Subject: [PATCH] fix typo: "this." -> "this->" --- bot-articles/string-view.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot-articles/string-view.md b/bot-articles/string-view.md index 9ec7dcd..16f70fe 100644 --- a/bot-articles/string-view.md +++ b/bot-articles/string-view.md @@ -28,7 +28,7 @@ not just read its contents. For example, **[std::string_view][sv]** cannot be used here: ```cpp // or when passing an rvalue reference -void store(std::string s) { this.s = std::move(s); } +void store(std::string s) { this->s = std::move(s); } ``` ## See Also