fix: typo in docs (#2100)

This commit is contained in:
Emiel Van Severen
2022-08-13 11:11:00 +02:00
committed by GitHub
parent 36d4571b05
commit e1206cb3e1
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ filter, find and pick things in Lua.
Getting started with telescope: Getting started with telescope:
1. Run `:checkhealth telescope` to make sure everything is installed. 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()` require("telescope.builtin").find_files()`
3. Put a `require("telescope").setup() call somewhere in your neovim config. 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 4. Read |telescope.setup| to check what config keys are available and what

View File

@@ -13,7 +13,7 @@ local telescope = {}
--- ---
--- Getting started with telescope: --- Getting started with telescope:
--- 1. Run `:checkhealth telescope` to make sure everything is installed. --- 1. Run `:checkhealth telescope` to make sure everything is installed.
--- 2. Evalulate it working with --- 2. Evaluate it working with
--- `:Telescope find_files` or --- `:Telescope find_files` or
--- `:lua require("telescope.builtin").find_files()` --- `:lua require("telescope.builtin").find_files()`
--- 3. Put a `require("telescope").setup() call somewhere in your neovim config. --- 3. Put a `require("telescope").setup() call somewhere in your neovim config.