Skip to content

Commit 678ce95

Browse files
authored
Update README.md
1 parent 27ff3e8 commit 678ce95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ $instance = (object) [
114114

115115
$evaluator->evaluate($instance, $staticEvaluationContext);
116116

117-
echo $instance->firstname; // Returns "n/a"
117+
echo $instance->firstname; // Prints "n/a"
118118
```
119119

120120
### Decoding of encoded content
@@ -138,7 +138,7 @@ $instance = 'eyJmb28iOiAiYmFyIn0K'; // Base64 encoded JSON '{"foo": "bar"}'
138138

139139
$evaluator->evaluate($instance, $staticEvaluationContext); // Returns true
140140

141-
echo $instance; // Returns '{"foo": "bar"}'
141+
echo $instance; // Prints '{"foo": "bar"}'
142142
```
143143

144144
## Assert content media type

0 commit comments

Comments
 (0)