Skip to content

Commit edd3535

Browse files
authored
Update AN0007.md
1 parent 302512e commit edd3535

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/AN0007.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
### Code with Diagnostic
1212

1313
```csharp
14-
string date = DateTime.UtcNow.ToString(""yyyy/MM/dd"");
14+
string date = DateTime.UtcNow.ToString("yyyy/MM/dd");
1515
```
1616

1717
### Code with Fix
1818

1919
```csharp
20-
string date = DateTime.UtcNow.ToString(""yyyy/MM/dd"", CultureInfo.InvariantCulture);
20+
string date = DateTime.UtcNow.ToString("yyyy/MM/dd", CultureInfo.InvariantCulture);
2121
```

0 commit comments

Comments
 (0)