Skip to content

Commit 572ec52

Browse files
committed
Minor readme fixes.
1 parent 9e27c1c commit 572ec52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ $date = to_default_timezone('2017-02-28T14:05:01Z');
240240
241241
#### `backtrace_as_string()`
242242
243-
Return backtrace without arguments as a string:
243+
Get backtrace without arguments as a string:
244244
245245
```php
246246
$backtrace = backtrace_as_string();
@@ -252,7 +252,7 @@ $backtrace = backtrace_as_string();
252252
253253
#### `minimized_backtrace_as_string()`
254254
255-
Return minimized backtrace as a string:
255+
Get minimized backtrace as a string:
256256
257257
```php
258258
$backtrace = minimized_backtrace_as_string();
@@ -340,7 +340,7 @@ $path = relative_path('/var/www/htdocs/example/public/../../', '/var/')
340340
341341
#### `get_dump()`
342342
343-
Return nicely formatted string representation of the variable, using [Symfony VarDumper Component](http://symfony.com/doc/current/components/var_dumper/introduction.html):
343+
Get nicely formatted string representation of the variable, using [Symfony VarDumper Component](http://symfony.com/doc/current/components/var_dumper/introduction.html):
344344
345345
```php
346346
$array = [
@@ -410,7 +410,7 @@ $isJson = is_json('{"foo":1,"bar":2,"baz":3}');
410410
// true
411411
```
412412
413-
It can return decoded JSON if you pass the second `return` argument as `true`:
413+
It can return decoded JSON if you pass the second argument as `true`:
414414
415415
```php
416416
$decoded = is_json('{"foo":1,"bar":2,"baz":3}', true);

0 commit comments

Comments
 (0)