Skip to content

Commit

Permalink
chore(AIP-192): fix bullets (#1438)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz authored Oct 29, 2024
1 parent c316a88 commit 5370dd5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aip/general/0192.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,17 @@ documentation page containing the diagram as an image.
A comment can "link" to another component (service, method, message, field,
enum, or enum value) as a Markdown reference link. The reference **must** be one
of the following forms:

- The fully-qualified name of the element e.g. `[Book][google.example.v1.Book]`
- A scope-relative reference qualified e.g. `[Sci-Fi genre][Genre.GENRE_SCI_FI]`
- An implied reference e.g. `[Book][]` which equates to `[Book][Book]`

These references are solved as per [name resolution][] rules.
These references are resolved as per [name resolution][] rules.

Containing fields names **must not** be used in references. They will not
resolve. The original definition **must** be referenced instead. For example,
`[author][Book.author.family_name]` where `author` is a field of `Book`, will
not resolve, but `[author][Author.family_name]` would.
not resolve, but `[author][Author.family_name]` will.

[name resolution]: https://protobuf.dev/programming-guides/proto3/#name-resolution

Expand Down

0 comments on commit 5370dd5

Please sign in to comment.