Skip to content

Commit d7e7548

Browse files
Merge pull request #23599 from WilliamAntonRohm/issue-7900
sql-docs/issues/7900 -- minor text inconsistencies
2 parents 399454b + fc30dbd commit d7e7548

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/t-sql/functions/format-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ DECLARE @d DATE = '11/22/2020';
9999
SELECT FORMAT( @d, 'd', 'en-US' ) 'US English'
100100
,FORMAT( @d, 'd', 'en-gb' ) 'Great Britain English'
101101
,FORMAT( @d, 'd', 'de-de' ) 'German'
102-
,FORMAT( @d, 'd', 'zh-cn' ) 'Simplified Chinese (PRC)';
102+
,FORMAT( @d, 'd', 'zh-cn' ) 'Chinese Simplified (PRC)';
103103

104104
SELECT FORMAT( @d, 'D', 'en-US' ) 'US English'
105105
,FORMAT( @d, 'D', 'en-gb' ) 'Great Britain English'
106106
,FORMAT( @d, 'D', 'de-de' ) 'German'
107-
,FORMAT( @d, 'D', 'zh-cn' ) 'Chinese (Simplified PRC)';
107+
,FORMAT( @d, 'D', 'zh-cn' ) 'Chinese Simplified (PRC)';
108108
```
109109

110110
[!INCLUDE[ssResult](../../includes/ssresult-md.md)]
@@ -145,7 +145,7 @@ Date Custom Number
145145

146146
```sql
147147
SELECT TOP(5) CurrencyRateID, EndOfDayRate
148-
,FORMAT(EndOfDayRate, 'N', 'en-us') AS 'Number Format'
148+
,FORMAT(EndOfDayRate, 'N', 'en-us') AS 'Numeric Format'
149149
,FORMAT(EndOfDayRate, 'G', 'en-us') AS 'General Format'
150150
,FORMAT(EndOfDayRate, 'C', 'en-us') AS 'Currency Format'
151151
FROM Sales.CurrencyRate

0 commit comments

Comments
 (0)