Add missing semicolon (#5165)

See dotnet/docs#26006

Also fixed in dotnet/csharpstandard#371
This commit is contained in:
Bill Wagner 2021-09-08 12:05:25 -04:00 committed by GitHub
parent 8df1e5d5a7
commit f63f70960c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -142,7 +142,7 @@ Note that this implicit conversion seemingly violates the advice in the beginnin
The following example illustrates implicit dynamic conversions:
```csharp
object o = "object"
object o = "object";
dynamic d = "dynamic";
string s1 = o; // Fails at compile-time -- no conversion exists