From 631167bc55a1fa2f6cb71532039fd4ed45b3dc6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C5=A0ipr?= Date: Tue, 27 Oct 2020 16:52:23 +0100 Subject: [PATCH] Fix error message (#198) --- lua/telescope/config/resolve.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.