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