aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/es/web/javascript/reference/global_objects/object/setprototypeof/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/es/web/javascript/reference/global_objects/object/setprototypeof/index.html b/files/es/web/javascript/reference/global_objects/object/setprototypeof/index.html
index d7b19fea89..1bfa3cbb0d 100644
--- a/files/es/web/javascript/reference/global_objects/object/setprototypeof/index.html
+++ b/files/es/web/javascript/reference/global_objects/object/setprototypeof/index.html
@@ -129,7 +129,7 @@ Object.appendChain(oCat, new Animal());
console.log(oCat.breathing); // 'yes'
</pre>
-<h4 id="Segundo_ejemplo_Transofrmando_un_valor_Primitivo_en_una_instancia_de_su_constructor_y_agregar_su_cadena_al_prototipo">Segundo ejemplo: Transofrmando un valor Primitivo en una instancia de su constructor y agregar su cadena al prototipo</h4>
+<h4 id="Segundo_ejemplo_Transformando_un_valor_Primitivo_en_una_instancia_de_su_constructor_y_agregar_su_cadena_al_prototipo">Segundo ejemplo: Transformando un valor Primitivo en una instancia de su constructor y agregar su cadena al prototipo</h4>
<pre class="brush: js">function Symbol() {
this.isSymbol = 'yes';