mirror of https://github.com/rclone/rclone.git
docs: rc: fix correct _path to _root in on the fly backend docs
This commit is contained in:
parent
f26d2c6ba8
commit
612c717ea0
|
@ -496,7 +496,7 @@ For example this JSON is equivalent to `remote:/tmp`
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"_name": "remote",
|
"_name": "remote",
|
||||||
"_path": "/tmp"
|
"_root": "/tmp"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -506,7 +506,7 @@ And this is equivalent to `:sftp,host='example.com':/tmp`
|
||||||
{
|
{
|
||||||
"type": "sftp",
|
"type": "sftp",
|
||||||
"host": "example.com",
|
"host": "example.com",
|
||||||
"_path": "/tmp"
|
"_root": "/tmp"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -515,7 +515,7 @@ And this is equivalent to `/tmp/dir`
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
type = "local",
|
type = "local",
|
||||||
_ path = "/tmp/dir"
|
_root = "/tmp/dir"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue