From 901f1276bf65a9fd4200a9ca90c931c0acd33f9d Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Wed, 7 Jan 2015 07:19:14 +0100 Subject: [PATCH] using-jquery-core/iterating: code styling changes --- page/using-jquery-core/iterating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/using-jquery-core/iterating.md b/page/using-jquery-core/iterating.md index 9563753c..eabac87c 100644 --- a/page/using-jquery-core/iterating.md +++ b/page/using-jquery-core/iterating.md @@ -266,7 +266,7 @@ $( "li" ).map( function( index, element ) { return element.id; }).get(); -// Also returns ["a", "b", "c"] +// Also returns [ "a", "b", "c" ] // Note that the value comes first with $.map $.map( arr, function( value, index ) { return value.id;