[php-langspec] master: Fix markdown typo in spec/ (#249)
[email protected] (Superkooka via GitHub) Thu, 23 Feb 2023 23:56:39 +0000
| Newsgroups | php.standards.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Superkooka (Superkooka) Committer: GitHub (web-flow) Pusher: iluuu1994 Date: 2023-02-24T00:43:29+01:00 Commit: https://github.com/php/php-langspec/commit/4c19272d1f832faba8c7bc808bf4a2db4412a6c4 Raw diff: https://github.com/php/php-langspec/commit/4c19272d1f832faba8c7bc808bf4a2db4412a6c4.diff Fix markdown typo in spec/ (#249) Changed paths: M spec/08-conversions.md Diff: diff --git a/spec/08-conversions.md b/spec/08-conversions.md index e93183d..069676d 100644 --- a/spec/08-conversions.md +++ b/spec/08-conversions.md @@ -14,7 +14,7 @@ Conversions to `resource` and `null` types can not be performed. ## Converting to Boolean Type -The [result type] (http://www.php.net/manual/en/language.types.boolean.php#language.types.boolean.casting) is [`bool`](05-types.md#the-boolean-type). +The [result type](http://www.php.net/manual/en/language.types.boolean.php#language.types.boolean.casting) is [`bool`](05-types.md#the-boolean-type). If the source type is `int` or `float`, then if the source value tests equal to 0, the result value is `FALSE`; otherwise, the result value is `TRUE`.