Fix typo in conversion.md (#1970)

fixed a simple typo, that is "contravariant" is a single word.
This commit is contained in:
Yukhti Lochana 2018-10-31 03:41:12 +05:30 committed by Neal Gafter
parent 10b672a0c3
commit 54df8973fa

View file

@ -770,7 +770,7 @@ class Test
The assignment to `d1` implicitly converts the method group `F` to a value of type `D1`.
The assignment to `d2` shows how it is possible to create a delegate to a method that has less derived (contra-variant) parameter types and a more derived (covariant) return type.
The assignment to `d2` shows how it is possible to create a delegate to a method that has less derived (contravariant) parameter types and a more derived (covariant) return type.
The assignment to `d3` shows how no conversion exists if the method is not applicable.