From 6cc6ce5ff373c3f04b097638e401ecde01ed3079 Mon Sep 17 00:00:00 2001 From: arkanoid87 Date: Tue, 12 Mar 2024 02:42:19 +0100 Subject: [PATCH] Update manual.md adding link to generic == for tuples in Open and Closed symbols example --- doc/manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual.md b/doc/manual.md index 65a4472e70cbf..9be42d1866b59 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