File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ See: [#202]
24
24
## Version 0.8.3
25
25
26
26
- build: Check docs warnings in CI by @davidcole1340 in [ #180 ]
27
- - fix: Fixes inifinte loop in ClassEntry::instance_of() by @ju1ius in [ #188 ]
27
+ - fix: Fixes infinite loop in ClassEntry::instance_of() by @ju1ius in [ #188 ]
28
28
- fix: Fix binary slice lifetimes by @davidcole1340 in [ #181 ]
29
29
- build: Fixes CI workflow configuration by @ju1ius in [ #195 ]
30
30
- feat: Add get_id() and hash() methods on ZendObject by @ju1ius in [ #196 ]
Original file line number Diff line number Diff line change 17
17
//
18
18
// The hash after `ext-php-rs-` in the bindings path may change. There should
19
19
// be two folders beginning with `ext-php-rs-` in `target/debug/build`, so
20
- // check both for the presense of the bindings file.
20
+ // check both for the presence of the bindings file.
21
21
22
22
bind ! {
23
23
HashTable ,
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ placed underneath the `#[php_class]` attribute.
23
23
the ` #[php_module] ` function.
24
24
25
25
You may also use the ` #[prop] ` attribute on a struct field to use the field as a
26
- PHP property. By default, the field will be accessible from PHP publically with
26
+ PHP property. By default, the field will be accessible from PHP publicly with
27
27
the same name as the field. Property types must implement ` IntoZval ` and
28
28
` FromZval ` .
29
29
You can’t perform that action at this time.
0 commit comments