From c652bbe5cd5b500e910531aa2da0d02cc8b43bd5 Mon Sep 17 00:00:00 2001 From: Islon Scherer Date: Wed, 21 Feb 2024 18:56:11 +0100 Subject: [PATCH] fix typo in doc for Listing default (#224) --- docs/modules/language-reference/pages/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/language-reference/pages/index.adoc b/docs/modules/language-reference/pages/index.adoc index 8640137e..0e70a2d5 100644 --- a/docs/modules/language-reference/pages/index.adoc +++ b/docs/modules/language-reference/pages/index.adoc @@ -3946,7 +3946,7 @@ nullish: Null // = null <11> <2> Properties of type `List` default to the empty list. <3> Properties of type `Set` default to the empty set. <4> Properties of type `Map` default to the empty map. -<5> Properties of type `Listing` default to an empty listing whose default element is the default for `Y`. +<5> Properties of type `Listing` default to an empty listing whose default element is the default for `X`. <6> Properties of type `Mapping` default to an empty mapping whose default value is the default for `Y`. <7> Properties of non-external class type `X` default to `new X {}`. <8> Properties of type `X?` default to `Null(x)` where `x` is the default for `X`.