diff options
author | arkanoid87 <arkanoid87@users.noreply.github.com> | 2024-03-16 06:23:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-16 06:23:44 +0100 |
commit | cbf48a253f134dea5cc8d8b2393b7bf6310cc8fe (patch) | |
tree | d324b5d5a652f2018edad07393ceac222b85df4d /doc | |
parent | f639cf063f66a160550bcf8955eb3446ca101cc2 (diff) | |
download | Nim-cbf48a253f134dea5cc8d8b2393b7bf6310cc8fe.tar.gz |
Update manual.md (#23393)
adding link to generic == for tuples in Open and Closed symbols example
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.md b/doc/manual.md index 65a4472e7..9be42d186 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -5863,7 +5863,7 @@ at definition and the context at instantiation are considered: echo a == b # works! ``` -In the example, the generic `==` for tuples (as defined in the system module) +In the example, the [generic `==` for tuples](system.html#%3D%3D%2CT%2CT_2) (as defined in the system module) uses the `==` operators of the tuple's components. However, the `==` for the `Index` type is defined *after* the `==` for tuples; yet the example compiles as the instantiation takes the currently defined symbols into account |