Skip to content

Commit 5f41400

Browse files
committed
Fix a few paths in PN documentation
1 parent cc37fca commit 5f41400

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/resources/docs/Persistence_Network

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ There are several supported formats, and there is the potential to add more in t
1313
In your configuration file, a connection can be aliased, to make re-specifying a connection
1414
easier, but the actual connection specification is a URI that maps to a specific data source.
1515
For instance, the default SQLite format is simply a pointer to a file:
16-
%%PRE|sqlite:///home/data/persistence.db%%
16+
%%PRE|sqlite://home/data/persistence.db%%
1717

1818
There are several different connection types supported, and each has a slightly different requirement:
1919

@@ -44,7 +44,7 @@ applicable to all connection types.
4444
Invalid modifiers will cause a warning to be raised during startup, but will otherwise be ignored.
4545

4646
A note on file based URIs: The file path is specified after two forward slashes, so an absolute
47-
path on unix looks like this: yml:///path/to/file, and an absolute path on windows looks like
47+
path on unix looks like this: yml://path/to/file, and an absolute path on windows looks like
4848
this: yml://C:/path/to/file (alternatively yml://C:\path\to\file will also work). On all
4949
platforms, a relative path would look like this: yml://path/to/file. Additionally, file based
5050
connections are '''usually''' going to be much faster, but less reliable than SQL based
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file sets up the Persistence Network.
22
# For more details, see the documentation at
3-
# https://methodscript.com/docs/3.3.4/Persistence_Network.html
3+
# https://methodscript.com/docs/3.3.5/Persistence_Network.html
44

55
**=sqlite://persistence.db

0 commit comments

Comments
 (0)