diff options
author | Clyybber <darkmine956@gmail.com> | 2020-05-08 16:13:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 16:13:53 +0200 |
commit | 4bd77cf045e5563ea1150d5106fec1f6f66d5e2d (patch) | |
tree | aabadb3fab8186fd1a90763e133577bd79c6844d | |
parent | 363b7ff3b80d2b50cda901d1f6e6b01e67747ed2 (diff) | |
download | Nim-4bd77cf045e5563ea1150d5106fec1f6f66d5e2d.tar.gz |
Fix typo
-rw-r--r-- | doc/manual_experimental.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual_experimental.rst b/doc/manual_experimental.rst index 45732fae2..1398d1a9b 100644 --- a/doc/manual_experimental.rst +++ b/doc/manual_experimental.rst @@ -104,7 +104,7 @@ cannot have the type ``void``. Covariance ========== -Covariance in Nim can be introduced only though pointer-like types such +Covariance in Nim can be introduced only through pointer-like types such as ``ptr`` and ``ref``. Sequence, Array and OpenArray types, instantiated with pointer-like types will be considered covariant if and only if they are also immutable. The introduction of a ``var`` modifier or additional |