Fix doc bug introduced by #14508 (#14747)

pull/14748/head
Tom Dykstra 2019-10-01 10:43:36 -07:00 committed by GitHub
parent 82b43031e3
commit 59f1c0a793
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ The order of placeholders, not their names, determines which parameters are used
```csharp
string p1 = "parm1";
string p2 = "parm2";
_logger.LogInformation("Parameter values: {p1}, {p2}", p1, p2);
_logger.LogInformation("Parameter values: {p2}, {p1}", p1, p2);
```
This code creates a log message with the parameter values in sequence: