Skip to content

Commit

Permalink
log-levels: Fix introduction.md (#713)
Browse files Browse the repository at this point in the history
Missing 'string' in code example.
  • Loading branch information
kordek authored Sep 7, 2023
1 parent b01bc8f commit f29ea25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/log-levels/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ You can use the `+` operator to concatenate strings:

```cpp
std::string original_title{"The School of Rock"};
std::sequel_indicator{"Electric Boogaloo"};
std::string sequel_indicator{"Electric Boogaloo"};
std::string next_movie_title = original_title + " 2: " + sequel_indicator;
```
Expand Down

0 comments on commit f29ea25

Please sign in to comment.