From b82fe07384790cbe977fc1ab6cbe85ce478cac12 Mon Sep 17 00:00:00 2001 From: Alexander Zaitsev Date: Thu, 22 Apr 2021 22:36:23 +0300 Subject: [PATCH] [Rust] Fix small mistyping (#6585) Hi! Just a veeeeeery small fix in the Rust sample. No functionality is affected. That's not important at all but annoying for my eyes :) --- samples/sample_binary.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/sample_binary.rs b/samples/sample_binary.rs index 67f05e69c..6972e7ff0 100644 --- a/samples/sample_binary.rs +++ b/samples/sample_binary.rs @@ -72,7 +72,7 @@ fn main() { // Create the monster using the `Monster::create` helper function. This // function accepts a `MonsterArgs` struct, which supplies all of the data // needed to build a `Monster`. To supply empty/default fields, just use the - // Rust built-in `Default::default()` function, as demononstrated below. + // Rust built-in `Default::default()` function, as demonstrated below. let orc = Monster::create(&mut builder, &MonsterArgs{ pos: Some(&Vec3::new(1.0f32, 2.0f32, 3.0f32)), mana: 150,