diff --git a/docs/guide-es/helper-html.md b/docs/guide-es/helper-html.md
index fa588c3968..7dd05e955a 100644
--- a/docs/guide-es/helper-html.md
+++ b/docs/guide-es/helper-html.md
@@ -162,10 +162,10 @@ especifica directamente.
Los métodos más genéricos son:
```php
-// type, input name, input value, options
+type, input name, input value, options
= Html::input('text', 'username', $user->name, ['class' => $username]) ?>
-// type, model, model attribute name, options
+type, model, model attribute name, options
= Html::activeInput('text', $user, 'name', ['class' => $username]) ?>
```
@@ -282,13 +282,13 @@ Existen dos métodos para generar etiquetas que envuelvan estilos y scripts incr
```php
= Html::style('.danger { color: #f00; }') ?>
-// Genera
+Genera
= Html::script('alert("Hello!");', ['defer' => true]);
-// Genera
+Genera
```
@@ -298,7 +298,7 @@ Si se quiere enlazar un estilo externo desde un archivo CSS:
```php
= Html::cssFile('@web/css/ie5.css', ['condition' => 'IE 5']) ?>
-// genera
+genera