[types] Add (back) trailing commas

This commit is contained in:
Eryn Wells 2018-09-08 16:06:47 -07:00
parent c6696c4f8b
commit 125fb08f43

View file

@ -10,7 +10,7 @@ use object::Object;
#[derive(Debug, PartialEq)]
pub struct Pair {
pub car: Obj,
pub cdr: Obj
pub cdr: Obj,
}
impl Pair {