Skip to content

Commit 5fb95c7

Browse files
Merge pull request #4606 from MicrosoftDocs/v-thepet-patch-1
Fix PoliCheck hit: Western countries
2 parents 5a1e876 + bece531 commit 5fb95c7

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)