Adding repeated field data population example

Signed-off-by: David Symonds <dsymonds@golang.org>
This commit is contained in:
Zac Mullett 2016-01-24 20:11:55 +01:00 коммит произвёл David Symonds
Родитель 5fc2294e65
Коммит 6aaa8d4770
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -140,6 +140,7 @@ To create and play with a Test object from the example package,
test := &example.Test { test := &example.Test {
Label: proto.String("hello"), Label: proto.String("hello"),
Type: proto.Int32(17), Type: proto.Int32(17),
Reps: []int64{1, 2, 3},
Optionalgroup: &example.Test_OptionalGroup { Optionalgroup: &example.Test_OptionalGroup {
RequiredField: proto.String("good bye"), RequiredField: proto.String("good bye"),
}, },

Просмотреть файл

@ -235,6 +235,7 @@ To create and play with a Test object:
test := &pb.Test{ test := &pb.Test{
Label: proto.String("hello"), Label: proto.String("hello"),
Type: proto.Int32(17), Type: proto.Int32(17),
Reps: []int64{1, 2, 3},
Optionalgroup: &pb.Test_OptionalGroup{ Optionalgroup: &pb.Test_OptionalGroup{
RequiredField: proto.String("good bye"), RequiredField: proto.String("good bye"),
}, },