From e396f52a06226dbd767c2c2c3617e10380fe62b4 Mon Sep 17 00:00:00 2001
From: Philipp Rieber
Date: Sun, 27 Oct 2013 08:32:59 +0100
Subject: [PATCH] [DomCrawler] Fix description of closure arguments order
---
components/dom_crawler.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/dom_crawler.rst b/components/dom_crawler.rst
index bb45d6c2beb..487affdfcdc 100644
--- a/components/dom_crawler.rst
+++ b/components/dom_crawler.rst
@@ -151,7 +151,7 @@ Call an anonymous function on each node of the list::
return $node->text();
});
-The anonymous function receives the position and the node as arguments.
+The anonymous function receives the node and the position as arguments.
The result is an array of values returned by the anonymous function calls.
Adding the Content