Skip to content

Commit bece531

Browse files
authored
Fix PoliCheck hit: Western countries
User Story https://dev.azure.com/mseng/TechnicalContent/_workitems/edit/2001296.
1 parent 6dfcfb7 commit bece531

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/atl-mfc-shared/codesnippet/CPP/cstringt-class_2.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// OEM character 252 on most IBM-compatible computers in
2-
// Western countries/regions is superscript n, as in 2^n.
2+
// many countries/regions is superscript n, as in 2^n.
33
// Converting it to the ANSI English charset results in a
44
// normal character 'n', which is the closest possible
55
// representation.
@@ -14,4 +14,4 @@
1414
// the character's value truly was.
1515
str.AnsiToOem();
1616
ASSERT(str[0] != 252);
17-
ASSERT(str[0] == 'n');
17+
ASSERT(str[0] == 'n');

0 commit comments

Comments
 (0)