Skip to content

Commit 6f59b96

Browse files
authored
Add missing closing parenthesis
1 parent 2d7e44e commit 6f59b96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard/serialization/system-text-json/polymorphism.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ Instead of falling back to the base type, you can use the `FallBackToNearestAnce
599599
```csharp
600600
[JsonPolymorphic(
601601
UnknownDerivedTypeHandling = JsonUnknownDerivedTypeHandling.FallBackToNearestAncestor)]
602-
[JsonDerivedType(typeof(BasePoint)]
602+
[JsonDerivedType(typeof(BasePoint))]
603603
public interface IPoint { }
604604

605605
public class BasePoint : IPoint { }

0 commit comments

Comments
 (0)