From e7c524cc49a0f26782fec1d7e8450ba113544def Mon Sep 17 00:00:00 2001 From: Michal Date: Wed, 24 Apr 2019 15:21:40 +0200 Subject: [PATCH] Fix misleading comments about render component in examples --- examples/game-of-life/src/lib.rs | 2 +- examples/js-component/src/lib.rs | 2 +- examples/moire/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 examples/game-of-life/src/lib.rs mode change 100644 => 100755 examples/js-component/src/lib.rs mode change 100644 => 100755 examples/moire/src/lib.rs diff --git a/examples/game-of-life/src/lib.rs b/examples/game-of-life/src/lib.rs old mode 100644 new mode 100755 index 796cc9b..5545ce9 --- a/examples/game-of-life/src/lib.rs +++ b/examples/game-of-life/src/lib.rs @@ -172,7 +172,7 @@ pub fn run() { // Create a new Game of Life `Universe` render component. let universe = Universe::new(); - // Create a virtual DOM and mount it and the `Hello` render component to the + // Create a virtual DOM and mount it and the `Universe` render component to the // ``. let vdom = Vdom::new(body.as_ref(), universe); diff --git a/examples/js-component/src/lib.rs b/examples/js-component/src/lib.rs old mode 100644 new mode 100755 index 7c79b06..0629a71 --- a/examples/js-component/src/lib.rs +++ b/examples/js-component/src/lib.rs @@ -54,7 +54,7 @@ pub fn run() { // Create a new `GreetingViaJs` render component. let component = GreetingViaJs::new("World"); - // Create a virtual DOM and mount it and the `Hello` render component to the + // Create a virtual DOM and mount it and the `GreetingViaJs` render component to the // ``. let vdom = Vdom::new(body.as_ref(), component); diff --git a/examples/moire/src/lib.rs b/examples/moire/src/lib.rs old mode 100644 new mode 100755 index aa19e03..844061d --- a/examples/moire/src/lib.rs +++ b/examples/moire/src/lib.rs @@ -23,7 +23,7 @@ pub fn run() { // Create a new `Moire` render component. let component = Moire::new(); - // Create a virtual DOM and mount it and the `Hello` render component to the + // Create a virtual DOM and mount it and the `Moire` render component to the // scene. let vdom = Vdom::new(&scene, component);