From 6d97e7a058ce698c72ad07daa336f2589f2b44a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ekaitz=20Z=C3=A1rraga?= Date: Fri, 26 Jan 2024 21:02:42 +0100 Subject: [PATCH] FIX docs: get_node_edges => get_form_edges --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 217d5fc..8406a90 100644 --- a/README.md +++ b/README.md @@ -265,7 +265,7 @@ require("nvim-paredit").setup({ end, -- Accepts a Treesitter node representing a form and should return the 'edges' of the node. This -- includes the node text and the range covered by the node - get_node_edges = function(node) + get_form_edges = function(node) return { left = { text = "#{", range = { 0, 0, 0, 2 } }, right = { text = "}", range = { 0, 5, 0, 6 } },