summaryrefslogtreecommitdiff
path: root/lua/telescope/config
diff options
context:
space:
mode:
authorJan Šipr <sipr.jan@gmail.com>2020-10-27 16:52:23 +0100
committerGitHub <noreply@github.com>2020-10-27 11:52:23 -0400
commit631167bc55a1fa2f6cb71532039fd4ed45b3dc6d (patch)
tree1c6e67730a92d44280a1c8babe0611aa5bb7bb81 /lua/telescope/config
parent113a516c63fb6e1ae1fb01173ed8fefdf450b08a (diff)
Fix error message (#198)
Diffstat (limited to 'lua/telescope/config')
-rw-r--r--lua/telescope/config/resolve.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/config/resolve.lua b/lua/telescope/config/resolve.lua
index 8817c59..7c7ee6d 100644
--- a/lua/telescope/config/resolve.lua
+++ b/lua/telescope/config/resolve.lua
@@ -145,7 +145,7 @@ resolver.resolve_width = function(val)
end
end
- error('invalid configuration option for height:' .. tostring(val))
+ error('invalid configuration option for width:' .. tostring(val))
end
--- Win option always returns a table with preview, results, and prompt.