From f8f25d8ed0d57ac69ba209925d839339e563af31 Mon Sep 17 00:00:00 2001 From: JustCarty Date: Wed, 16 Jan 2019 09:54:14 +0000 Subject: [PATCH] Corrected description of data_set The function `data_set` was incorrectly saying that the third argument is the overwrite argument; when in fact it is the fourth. --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index 095e1c2b2ee..ad18d7623b7 100644 --- a/helpers.md +++ b/helpers.md @@ -604,7 +604,7 @@ This function also accepts wildcards and will set values on the target according ] */ -By default, any existing values are overwritten. If you wish to only set a value if it doesn't exist, you may pass `false` as the third argument: +By default, any existing values are overwritten. If you wish to only set a value if it doesn't exist, you may pass `false` as the fourth argument: $data = ['products' => ['desk' => ['price' => 100]]];