Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/design-decisions/nullable-getters-setters.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ can't have defaults, there's no functional problem with this.
As an example, consider this `.proto` file:

```proto
message Msg { optional Child child = 1; }
message Child { optional Grandchild grandchild = 1; }
message Grandchild { optional int32 foo = 1 [default = 72]; }
message Msg { Child child = 1; }
message Child { Grandchild grandchild = 1; }
message Grandchild { int32 foo = 1 [default = 72]; }
```

and corresponding Kotlin getters:
Expand Down
Loading