From e651c3731749f71a36d414e7cbb6b36bcf30aee6 Mon Sep 17 00:00:00 2001 From: Frantisek Stanko Date: Thu, 29 Jun 2023 15:24:41 +0200 Subject: [PATCH] docs: fix the branch example for lazy.nvim (#2586) The previous values were incorrect. The new values reflect the correct way of using the branch, as showcased in the previous examples. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 383989c..c8c33fc 100644 --- a/README.md +++ b/README.md @@ -110,14 +110,14 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim) -- init.lua: { 'nvim-telescope/telescope.nvim', tag = '0.1.1', --- or , branch = '0.1.1', +-- or , branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } } -- plugins/telescope.lua: return { 'nvim-telescope/telescope.nvim', tag = '0.1.1', --- or , branch = '0.1.1', +-- or , branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } } ```