diff --git a/subjects/lunch_queue/README.md b/subjects/lunch_queue/README.md index 1d0a7d6f7..d69e84f9d 100644 --- a/subjects/lunch_queue/README.md +++ b/subjects/lunch_queue/README.md @@ -24,7 +24,7 @@ pub struct Queue { pub type Link = pub struct Person { - pub id: i32, + pub discount: i32, pub name: String, } @@ -32,7 +32,7 @@ impl Queue { pub fn new() -> Queue { } - pub fn add(&mut self, name: String, id: i32) { + pub fn add(&mut self, name: String, discount: i32) { } pub fn invert_queue(&mut self) {