summaryrefslogtreecommitdiffhomepage
path: root/de-de
diff options
context:
space:
mode:
authorm90 <frederik.ring@gmail.com>2014-11-01 20:18:11 +0100
committerm90 <frederik.ring@gmail.com>2014-11-01 20:18:11 +0100
commit34fac1cf65a550c894192d6bee4fd01f2ae63c88 (patch)
tree2cbb58344951fdcb7663a4873bac69ca84c8a4e7 /de-de
parent1d044a01c7ebe880a957310b2450e98c76ad4841 (diff)
casing fix
Diffstat (limited to 'de-de')
-rw-r--r--de-de/javascript-de.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/javascript-de.html.markdown b/de-de/javascript-de.html.markdown
index 851fe852..a295c1c2 100644
--- a/de-de/javascript-de.html.markdown
+++ b/de-de/javascript-de.html.markdown
@@ -463,7 +463,7 @@ MyConstructor.prototype = {
return this.myNumber
}
};
-var myNewObj2 = new myConstructor();
+var myNewObj2 = new MyConstructor();
myNewObj2.getMyNumber(); // = 5
// Alle primitiven Typen, also strings und numbers, haben auch Konstruktoren,