diff --git a/doc/site/modules/core/list.markdown b/doc/site/modules/core/list.markdown index 89a04b12..94cc9d0d 100644 --- a/doc/site/modules/core/list.markdown +++ b/doc/site/modules/core/list.markdown @@ -177,7 +177,7 @@ It is a runtime error if the index is not an integer or is out of bounds. ### **+**(other) operator - Appends a list to the end of the list (concatenation). `other` must be a `List`. + Appends a list to the end of the list (concatenation). `other` must be [an iterable](../../control-flow.html#the-iterator-protocol).
 var letters = ["a", "b", "c"]