From 95da4f90b9e696ae3a78b3f3e14ee8aa12aed4ec Mon Sep 17 00:00:00 2001 From: Ian Mackenzie Date: Fri, 15 Apr 2016 15:16:24 +1000 Subject: [PATCH] Fix small typo in method call documentation --- doc/site/method-calls.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/site/method-calls.markdown b/doc/site/method-calls.markdown index 2814a071..dbda3c9d 100644 --- a/doc/site/method-calls.markdown +++ b/doc/site/method-calls.markdown @@ -11,7 +11,7 @@ You have a *receiver* expression (here `System`) followed by a `.`, then a name are separated by commas: :::wren - list.insert("item", 3) + list.insert(3, "item") The argument list can also be empty: