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.

(cherry picked from commit e651c37317)
This commit is contained in:
Frantisek Stanko
2023-09-05 16:02:14 +02:00
committed by Simon Hauser
parent 11a3b16487
commit d64202bbfe
+2 -2
View File
@@ -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' }
}
```