summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/telescope.txt2
-rw-r--r--lua/telescope/init.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/telescope.txt b/doc/telescope.txt
index b10f05e..419e495 100644
--- a/doc/telescope.txt
+++ b/doc/telescope.txt
@@ -6,7 +6,7 @@ filter, find and pick things in Lua.
Getting started with telescope:
1. Run `:checkhealth telescope` to make sure everything is installed.
- 2. Evalulate it working with `:Telescope find_files` or `:lua
+ 2. Evaluate it working with `:Telescope find_files` or `:lua
require("telescope.builtin").find_files()`
3. Put a `require("telescope").setup() call somewhere in your neovim config.
4. Read |telescope.setup| to check what config keys are available and what
diff --git a/lua/telescope/init.lua b/lua/telescope/init.lua
index 6ed7e66..c267f06 100644
--- a/lua/telescope/init.lua
+++ b/lua/telescope/init.lua
@@ -13,7 +13,7 @@ local telescope = {}
---
--- Getting started with telescope:
--- 1. Run `:checkhealth telescope` to make sure everything is installed.
---- 2. Evalulate it working with
+--- 2. Evaluate it working with
--- `:Telescope find_files` or
--- `:lua require("telescope.builtin").find_files()`
--- 3. Put a `require("telescope").setup() call somewhere in your neovim config.