From 4964c1f1ed736a3db4ec9e1a3b4fe169d4d76c40 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Tue, 7 Mar 2023 01:11:27 +0100 Subject: [PATCH] Fix some typos --- CHANGELOG.md | 2 +- allowed_bindings.rs | 2 +- guide/src/macros/classes.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf90d706a9..223c7b0915 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ See: [#202] ## Version 0.8.3 - build: Check docs warnings in CI by @davidcole1340 in [#180] -- fix: Fixes inifinte loop in ClassEntry::instance_of() by @ju1ius in [#188] +- fix: Fixes infinite loop in ClassEntry::instance_of() by @ju1ius in [#188] - fix: Fix binary slice lifetimes by @davidcole1340 in [#181] - build: Fixes CI workflow configuration by @ju1ius in [#195] - feat: Add get_id() and hash() methods on ZendObject by @ju1ius in [#196] diff --git a/allowed_bindings.rs b/allowed_bindings.rs index d07be358ac..cc498489b1 100644 --- a/allowed_bindings.rs +++ b/allowed_bindings.rs @@ -17,7 +17,7 @@ // // The hash after `ext-php-rs-` in the bindings path may change. There should // be two folders beginning with `ext-php-rs-` in `target/debug/build`, so -// check both for the presense of the bindings file. +// check both for the presence of the bindings file. bind! { HashTable, diff --git a/guide/src/macros/classes.md b/guide/src/macros/classes.md index ad62294032..0935a02dc8 100644 --- a/guide/src/macros/classes.md +++ b/guide/src/macros/classes.md @@ -23,7 +23,7 @@ placed underneath the `#[php_class]` attribute. the `#[php_module]` function. You may also use the `#[prop]` attribute on a struct field to use the field as a -PHP property. By default, the field will be accessible from PHP publically with +PHP property. By default, the field will be accessible from PHP publicly with the same name as the field. Property types must implement `IntoZval` and `FromZval`.