Skip to content

Commit bfedc5c

Browse files
authored
Merge pull request MicrosoftDocs#3188 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to master to sync with https://github.com/MicrosoftDocs/cpp-docs (branch master)
2 parents efa3592 + 4c5b50c commit bfedc5c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/code-quality/annotating-structs-and-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ struct MyBuffer
8787
_Field_range_(1, MaxBufferSize)
8888
int bufferSize;
8989

90-
_Field_size_(bufferSize) // Prefered way - easier to read and maintain.
90+
_Field_size_(bufferSize) // Preferred way - easier to read and maintain.
9191
int buffer[]; // Using C99 Flexible array member
9292
};
9393
```

0 commit comments

Comments
 (0)