Changed ö to ö

This commit is contained in:
Blue Fox 2023-10-24 17:44:24 +01:00
parent dac2ffb437
commit 51473c4d9e

View File

@ -118,10 +118,10 @@
result2 = (-b.value - Math.sqrt(d)) / (2*a.value)
if(result1 == result2) {
result_string_new += "<li>Lösung: \
result_string_new += "<li>L&ouml;sung: \
<br> <code>x<sub>1/2</sub> = <mark>" + result1 + "</mark></code></li>";
} else {
result_string_new += "<li>Lösung: \
result_string_new += "<li>L&ouml;sung: \
<br> <code>x<sub>1</sub> = <mark>" + result1 + "</mark></code>\
<br> <code>x<sub>2</sub> = <mark>" + result2 + "</mark></code></li>";
}