Skip to content

Commit 61ca355

Browse files
committed
Fix anchor links in README
1 parent 9817bc7 commit 61ca355

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Python | GML
3636
`None` | `pointer_null`
3737
_(exception)_ | `undefined`
3838

39-
\*In order for booleans to be transmitted properly to Python, you must explicitly convert them with the `bool()` function in GML. See [Limitations](#GameMaker_data_types) for details.
39+
\*In order for booleans to be transmitted properly to Python, you must explicitly convert them with the `bool()` function in GML. See [Limitations](#GameMaker-data-types) for details.
4040

4141
Nested arrays/structs in the arguments are supported and will be correctly transmitted to Python as nested lists/dicts. In the same fashion, returning those structures from the called function will also convert it to arrays and structs on the way back to GML.
4242

@@ -121,7 +121,7 @@ var result = python_call_function("builtins", "sorted", [[4, 2, 3, 1, 5]], {reve
121121
show_debug_message(result); // [ 5,4,3,2,1 ]
122122
```
123123

124-
> It's recommended to call `bool()` on any boolean that you want to pass as an argument. Due to the way GameMaker handles booleans, Python will receive a `float` instead of a `bool` if you don't do this, which is not desirable in many cases. Read more about that in [Limitations](#GameMaker_data_types).
124+
> It's recommended to call `bool()` on any boolean that you want to pass as an argument. Due to the way GameMaker handles booleans, Python will receive a `float` instead of a `bool` if you don't do this, which is not desirable in many cases. Read more about that in [Limitations](#GameMaker-data-types).
125125
126126
Any exception that occurs in the Python side will throw a GameMaker error containing the exception message and traceback, which may be caught by wrapping the call in a `try`/`catch` block:
127127

0 commit comments

Comments
 (0)