Skip to content

Commit 6087965

Browse files
committed
comma
1 parent e23ed97 commit 6087965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/overview/what-s-new-for-visual-cpp-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ A quick highlight of some of the new features:
3333
- **C++ language enhancements**
3434

3535
- Try out C++23 preview features by setting the C++ Language Standard to `/std:c++23preview`. This setting enables the latest C++23 features and bug fixes. For more information, see [/std (Specify Language Standard Version)](../build/reference/std-specify-language-standard-version.md#stdc23preview).
36-
- Support for C++23’s `size_t` literal suffix which helps avoid truncations or signed comparison mismatches--especially when writing loops. For example:
36+
- Support for C++23’s `size_t` literal suffix, which helps avoid truncations or signed comparison mismatches--especially when writing loops. For example:
3737
```cpp
3838
// Infinite loop if v.size > max unsigned int
3939
for (auto i = 0u; i < v.size(); ++i)

0 commit comments

Comments
 (0)