Skip to content

Commit 5cfbbc1

Browse files
committed
Fix dead link
1 parent 0ebd8b4 commit 5cfbbc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/Compatibility.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ It is also possible to specify a version number, which is a shorthand for the ke
4444
- `"0.6.0"` corresponds to `* = false, switch, continue, enum, new, class, parent, export`
4545
- `"0.8.0"` corresponds to `* = false, switch, continue, enum, new, class, parent, export, try, catch`
4646

47-
So, writing a portable script that only makes use of Pluto 0.8.0's features requires this at the beginning:
47+
So, writing a portable script that only makes use of Pluto 0.8.0's keywords requires this at the beginning:
4848
```pluto
4949
pluto_use "0.8.0"
5050
```
5151

52-
This feature also supports quick encompassing of optional features. So, instead of:
52+
This feature also supports quick encompassing of optional keywords. So, instead of:
5353
```pluto
5454
pluto_use "0.8.0", global
5555
```
56-
You can use a '+' after the version number to also enable all of the optional features. As of 0.9.0, the only optional feature is [explicit globals](New%20Features/Explicit%20Globals) (`global`).
56+
You can use a '+' after the version number to also enable all of the optional keywords. As of 0.9.0, the only optional keyword is `global`:
5757
```pluto
5858
pluto_use "0.9.0+" -- The same as pluto_use "0.9.0", global
5959
```

0 commit comments

Comments
 (0)