update addressbook.proto

This commit is contained in:
Jan Tattermusch 2015-07-20 15:51:07 -07:00
parent bd3367c8b4
commit 792ae21bde

View File

@ -24,10 +24,10 @@ message Person {
PhoneType type = 2;
}
repeated PhoneNumber phone = 4;
repeated PhoneNumber phones = 4;
}
// Our address book file is just one of these.
message AddressBook {
repeated Person person = 1;
repeated Person people = 1;
}