docs: Fix mismatched brace in Authentication example (#1917)

This commit is contained in:
Jared Morrow 2017-07-27 13:54:04 -06:00 committed by Pat Cavit
parent 8d01314253
commit 1da69da4dd

View file

@ -568,7 +568,7 @@ var Login = {
return m("form", [
m("input[type=text]", {oninput: m.withAttr("value", Auth.setUsername), value: Auth.username}),
m("input[type=password]", {oninput: m.withAttr("value", Auth.setPassword), value: Auth.password}),
m("button[type=button]", {onclick: Auth.login, "Login")
m("button[type=button]", {onclick: Auth.login}, "Login")
])
}
}