Use u32 instead of usize

This commit is contained in:
Marcel Müller 2016-10-18 11:20:08 +02:00 committed by GitHub
parent 2cbd848fc6
commit be43b067ba

View file

@ -9,7 +9,7 @@ use maud::Markup;
#[derive(Debug)]
struct Entry {
name: &'static str,
score: usize,
score: u32,
}
mod btn {