From 3baced3209577e9e70b06b5f23372620f7d258a5 Mon Sep 17 00:00:00 2001 From: Sam Bostock Date: Sun, 17 Aug 2025 13:49:10 -0400 Subject: [PATCH] Add missing backticks in README The inline code sections weren't being closed. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7132637..cdf8e47 100644 --- a/README.md +++ b/README.md @@ -134,8 +134,8 @@ On an instance: * `[key]_leaf?`: Checks whether the node has edges of the type starting from the node. * `[key]_roots`: Scope to get all nodes having edges of the type ending in the node that have no edges of the type ending in themselves. * `[key]_root?`: Checks whether the node has edges of the type ending in the node. - * `[from.singularize]?: Checks whether the node has relations of the type starting from the node. - * `[to.singularize]?: Checks whether the node has relations of the type ending in the node. + * `[from.singularize]?`: Checks whether the node has relations of the type starting from the node. + * `[to.singularize]?`: Checks whether the node has relations of the type ending in the node. On the class: * `[key]_leaves`: All nodes having edges of the type ending in them.