Skip to content

Commit 684368a

Browse files
committed
Merge pull request #24 from juchi/examples_info
Fix output info in some examples
2 parents 9b97afd + ee81b81 commit 684368a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extension/examples/objects_list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class MyClassC {
2121
$objectsC[] = new MyClassC();
2222
}
2323

24-
echo "\n* Objects list after instanciating 10 objects C\n";
24+
echo "\n* Objects list after instanciating 5 objects C\n";
2525
meminfo_objects_list(fopen('php://stdout', 'w'));
2626

2727
unset($objectA);

extension/examples/objects_summary.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class MyClassC {
2121
$objectsC[] = new MyClassC();
2222
}
2323

24-
echo "\n* Objects summary after instanciating 10 objects C\n";
24+
echo "\n* Objects summary after instanciating 5 objects C\n";
2525
meminfo_objects_summary(fopen('php://stdout', 'w'));
2626

2727
unset($objectA);

0 commit comments

Comments
 (0)