Skip to content

Commit 1a11c3e

Browse files
committed
deploy: cb12851
1 parent 129235a commit 1a11c3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

overview/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@
120120
or <code>repeated</code> (proto2 and proto3) or <code>singular</code> (proto3). (The option to set a
121121
field to <code>required</code> is absent in proto3 and strongly discouraged in proto2. For
122122
more on this, see &ldquo;Required is Forever&rdquo; in
123-
<a href=/programming-guides/proto3#specifying-field-rules>Specifying Field Rules</a>.)</p><p>After setting the optionality/repeatability of a field, you specify the data
123+
<a href=/programming-guides/proto3/#specifying-field-rules>Specifying Field Rules</a>.)</p><p>After setting the optionality/repeatability of a field, you specify the data
124124
type. Protocol buffers support the usual primitive data types, such as integers,
125125
booleans, and floats. For the full list, see
126-
<a href=/programming-guides/proto3#scalar>Scalar Value Types</a>.</p><p>A field can also be of:</p><ul><li>A <code>message</code> type, so that you can nest parts of the definition, such as for
126+
<a href=/programming-guides/proto3/#scalar>Scalar Value Types</a>.</p><p>A field can also be of:</p><ul><li>A <code>message</code> type, so that you can nest parts of the definition, such as for
127127
repeating sets of data.</li><li>An <code>enum</code> type, so you can specify a set of values to choose from.</li><li>A <code>oneof</code> type, which you can use when a message has many optional fields
128128
and at most one field will be set at the same time.</li><li>A <code>map</code> type, to add key-value pairs to your definition.</li></ul><p>In proto2, messages can allow <strong>extensions</strong> to define fields outside of the
129129
message, itself. For example, the protobuf library&rsquo;s internal message schema

0 commit comments

Comments
 (0)