Skip to content

Commit 73b0287

Browse files
committed
fix build
1 parent 38bc238 commit 73b0287

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/40-define-functions/200-return/en/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function greeting()
5656
`return` is a special instruction that takes the expression written on the right and passes it outside to the code that called the method. As soon as PHP encounters `return`, the function is terminated.
5757

5858
<!-- TODO: translate img -->
59-
<!-- ![how sum function works in PHP](./assets/sum-php.jpg) -->
59+
<!-- ./assets/sum-php.jpg -->
6060

6161
```php
6262
<?php

modules/40-define-functions/200-return/es/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function saludo()
6161
La instrucción `return` es especial. Toma la expresión que se encuentra a su derecha y la devuelve al código que llamó a la función. Tan pronto como PHP encuentra `return`, la ejecución de la función termina:
6262

6363
<!-- TODO: translate img -->
64-
<!-- ![Sum-php](./assets/sum-php.jpg) -->
64+
<!-- ./assets/sum-php.jpg -->
6565

6666
```php
6767
<?php

0 commit comments

Comments
 (0)