Skip to content

Commit

Permalink
[javascript/de-de] Fix typos (#5064)
Browse files Browse the repository at this point in the history
  • Loading branch information
jk4e authored Aug 30, 2024
1 parent c5ab7e6 commit b0c0ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions de-de/javascript-de.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ while (true) {
// Eine unendliche Schleife!
}

// Do-while-Scheifen arbeiten wie while-Schleifen, abgesehen davon, dass sie
// Do-while-Schleifen arbeiten wie while-Schleifen, abgesehen davon, dass sie
// immer mindestens einmal ausgeführt werden.
var input;
do {
Expand Down Expand Up @@ -370,7 +370,7 @@ var anotherFunc = function(s){
}
anotherFunc.call(myObj, " And Hello Moon!"); // = "Hello World! And Hello Moon!"

// 'apply' funktioniert beiahe identisch, erwartet die übergebenen Argumente
// 'apply' funktioniert beinahe identisch, erwartet die übergebenen Argumente
// aber in einem Array

anotherFunc.apply(myObj, [" And Hello Sun!"]); // = "Hello World! And Hello Sun!"
Expand Down

0 comments on commit b0c0ab2

Please sign in to comment.