diff options
| author | MenBrial <48070259+MenBrial@users.noreply.github.com> | 2020-12-26 18:51:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-26 18:51:08 +0100 |
| commit | 3e884e863a37644838037ef5110be6678533667b (patch) | |
| tree | ad01b0d776ede3f79a0120ed18621b06d23e1899 /lua | |
| parent | 20fffc7c250f8488342566162a045d6a0ba1cd37 (diff) | |
fix: bug scroller.create (#366)
Corrects error creation
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/pickers/scroller.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/pickers/scroller.lua b/lua/telescope/pickers/scroller.lua index d9e5a64..324627b 100644 --- a/lua/telescope/pickers/scroller.lua +++ b/lua/telescope/pickers/scroller.lua @@ -50,7 +50,7 @@ scroller.create = function(strategy, sorting_strategy) return row end else - error("Unsupported strategy: ", strategy) + error("Unsupported strategy: " .. strategy) end end |
