[vm/ffi] Fixed typo in Struct documentation

Change-Id: I9823b09b614145b8d1a0691e45ffd1ec15c19e57
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/183696
Reviewed-by: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Daco Harkes <dacoharkes@google.com>
This commit is contained in:
Sergey G. Grekhov 2021-02-09 18:49:42 +00:00 committed by commit-bot@chromium.org
parent 88fdbea483
commit 46b46c2931

View file

@ -27,10 +27,10 @@ part of dart.ffi;
///
/// ```
/// class MyStruct extends Struct {
/// @Int32
/// @Int32()
/// external int a;
///
/// @Float
/// @Float()
/// external double b;
///
/// external Pointer<Void> c;