Skip to content

Commit 8c4a7ae

Browse files
committed
fmt
1 parent 30e7004 commit 8c4a7ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/types/array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ impl ZendHashTable {
524524
/// let mut ht = ZendHashTable::new();
525525
///
526526
/// for (key, val) in ht.iter() {
527-
/// match key {
527+
/// match &key {
528528
/// ArrayKey::Long(index) => {
529529
/// }
530530
/// ArrayKey::String(key) => {

src/types/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mod object;
1313
mod string;
1414
mod zval;
1515

16-
pub use array::{ZendHashTable, ArrayKey};
16+
pub use array::{ArrayKey, ZendHashTable};
1717
pub use callable::ZendCallable;
1818
pub use class_object::ZendClassObject;
1919
pub use iterable::Iterable;

0 commit comments

Comments
 (0)