1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Fixed 3 typos in the example in line 88 (#4207)

1.     Removed closing square bracket after <currentTiddler>
2.    Changed capital 'P' in addprefix
3.    Added missing slash at the end
This commit is contained in:
StefanSTFG 2019-08-27 18:10:00 +02:00 committed by Jeremy Ruston
parent 8d3dfdebe3
commit 990619b634

View File

@ -85,6 +85,6 @@ Filtered attribute values are indicated with triple curly braces around a [[Filt
This example shows how to add a prefix to a value:
```
<$text text={{{ [<currentTiddler>]addPrefix[$:/myprefix/]] }}}>
<$text text={{{ [<currentTiddler>addprefix[$:/myprefix/]] }}} />
```