Skip to content
This repository has been archived by the owner on Mar 2, 2021. It is now read-only.

Commit

Permalink
Remove unnecessary template string back-tick from error messaage
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalObi committed Apr 26, 2019
1 parent c03f0ad commit 763a308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/todomvc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub fn run() -> Result<(), JsValue> {
let document = utils::document();
let container = document
.query_selector(".todoapp")?
.ok_or_else(|| js_sys::Error::new("could not find `.todoapp` container"))?;
.ok_or_else(|| js_sys::Error::new("could not find .todoapp container"))?;

// Create a new `Todos` render component.
let todos = Todos::<Controller>::new();
Expand Down

0 comments on commit 763a308

Please sign in to comment.