diff --git a/DESIGN.md b/DESIGN.md index fe86d24..78c71a7 100644 --- a/DESIGN.md +++ b/DESIGN.md @@ -105,9 +105,9 @@ table : HashMap Vec<(Id, Row)>. -// suppose the row corresponds to 'INSERT 1, "Yura", 20.0 INTO persons;' +// suppose the row corresponds to 'INSERT 1, "Alice", 20.0 INTO persons;' Row ~> Vec -e.g. Row ~> vec![DbUUID 1, DbSTring "Yura"] +e.g. Row ~> vec![DbUUID 1, DbSTring "Alice"] Vec>