We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 578d058 commit ee7399fCopy full SHA for ee7399f
1 file changed
docs/code-quality/annotating-structs-and-classes.md
@@ -87,7 +87,7 @@ struct MyBuffer
87
_Field_range_(1, MaxBufferSize)
88
int bufferSize;
89
90
- _Field_size_(bufferSize) // Prefered way - easier to read and maintain.
+ _Field_size_(bufferSize) // Preferred way - easier to read and maintain.
91
int buffer[]; // Using C99 Flexible array member
92
};
93
```
0 commit comments