Skip to content

Commit 75f89bc

Browse files
BillWagnerjskeet
authored andcommitted
Item 29: §24.3 Fix pointer\_type grammar to use unmanaged\_type
In the `pointer_type` ANTLR production, replace `value_type` with `unmanaged_type`. Both files must be updated in sync.
1 parent 7dbaefe commit 75f89bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

standard/unsafe-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ A *pointer_type* is written as an *unmanaged_type* ([§8.8](types.md#88-unmanage
121121
122122
```ANTLR
123123
pointer_type
124-
: value_type ('*')+
124+
: unmanaged_type ('*')+
125125
| 'void' ('*')+
126126
;
127127
```

0 commit comments

Comments
 (0)