1
0
mirror of https://github.com/dart-lang/sdk synced 2024-07-08 12:06:26 +00:00

Add missing closing quotes to examples

Closes https://github.com/dart-lang/sdk/pull/54850

GitOrigin-RevId: 95290859570ee03cb93e6ecace4f05cde1d55dbd
Change-Id: I041ba5b5862db58e19a7d4724222183fb3de803e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/350942
Reviewed-by: Stephen Adams <sra@google.com>
Commit-Queue: Stephen Adams <sra@google.com>
This commit is contained in:
Matthew Berry 2024-02-11 01:41:02 +00:00 committed by Commit Queue
parent d8456b7cd8
commit 519799a8d8

View File

@ -93,7 +93,7 @@ evolving capabilities of the compiler.
```
```dart
@pragma('dart2js:prefer-inline) // Alias for the above annotation.
@pragma('dart2js:prefer-inline') // Alias for the above annotation.
```
This annotation may be placed on a function or method.
@ -109,7 +109,7 @@ candidate.
```
```dart
@pragma('dart2js:never-inline) // Alias for the above annotation.
@pragma('dart2js:never-inline') // Alias for the above annotation.
```
This annotation may be placed on a function or method to prevent the function
@ -224,7 +224,7 @@ variables, static variables, and top-level variables.
```dart
@pragma('dart2js:load-priority:normal')
@pragma('dart2js:load-priority:high)
@pragma('dart2js:load-priority:high')
```
By default, a call to `prefix.loadLibrary()` loads the library with 'normal'