summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkid-icarus <ryan.kois@gmail.com>2022-09-17 00:19:23 -0700
committerGitHub <noreply@github.com>2022-09-17 09:19:23 +0200
commit1fd497e8ffc99a70cac0be5a9b41e5014a1430e5 (patch)
tree855343486e6ccdf02c48fcf2c7f5a9f2ae598eb3
parent2584ff391b528d01bf5e8c04206d5902a79ebdde (diff)
docs: update oneshot finder example (#2167)
-rw-r--r--developers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/developers.md b/developers.md
index d45f775..9edb6f5 100644
--- a/developers.md
+++ b/developers.md
@@ -264,7 +264,7 @@ find results and call `entry_maker` for each entry. An example usage would be
`find`.
```lua
-finder = finders.new_oneshot_job { "find", opts },
+finder = finders.new_oneshot_job({ "find" }, opts ),
```
### More examples