From 612c717ea0eed3f646095ed57620fd05b2a2c20b Mon Sep 17 00:00:00 2001 From: David Seifert <16636962+SoapGentoo@users.noreply.github.com> Date: Tue, 30 Jul 2024 11:19:47 +0200 Subject: [PATCH] docs: rc: fix correct _path to _root in on the fly backend docs --- docs/content/rc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/rc.md b/docs/content/rc.md index b6e6f7e44..32e93867b 100644 --- a/docs/content/rc.md +++ b/docs/content/rc.md @@ -496,7 +496,7 @@ For example this JSON is equivalent to `remote:/tmp` ``` { "_name": "remote", - "_path": "/tmp" + "_root": "/tmp" } ``` @@ -506,7 +506,7 @@ And this is equivalent to `:sftp,host='example.com':/tmp` { "type": "sftp", "host": "example.com", - "_path": "/tmp" + "_root": "/tmp" } ``` @@ -515,7 +515,7 @@ And this is equivalent to `/tmp/dir` ``` { type = "local", - _ path = "/tmp/dir" + _root = "/tmp/dir" } ```