Skip to content

Commit f7f1567

Browse files
authored
Added reference to python None doc
1 parent a4fbb09 commit f7f1567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/null-references.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
### What does the language call these?
55
#### PHP
6-
PHP calls variables with no value [`NULL`s](https://secure.php.net/manual/en/language.types.null.php). Variables are NULL if they are manually assigned as such, their value has never been set to anything before, or they are unset via the [`unset()`](https://secure.php.net/manual/en/function.unset.php) method.
6+
PHP calls variables with no value [`NULL`](https://secure.php.net/manual/en/language.types.null.php). Variables are NULL if they are manually assigned as such, their value has never been set to anything before, or they are unset via the [`unset()`](https://secure.php.net/manual/en/function.unset.php) method.
77
#### Python
8-
Python calls variables with no value `None`.
8+
Python calls variables with no value [`None`](https://docs.python.org/3/library/constants.html#None).
99

1010
### What are the features of handling these?
1111
#### PHP

0 commit comments

Comments
 (0)