Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wildcard-variables] Fix typo in 'imports' example. #3827

Merged
merged 3 commits into from
May 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions working/wildcards/feature-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ because the function is unreachable.

```dart
// a.dart
extension on String {
extension ExtendedString on String {
bool get isBlank => trim().isEmpty;
}
```
Expand All @@ -180,8 +180,8 @@ main() {
}
```

Import prefixes named `_` are non-binding and will provide access to the
extensions in that library.
Import prefixes named `_` are non-binding but will provide access to the
non-private extensions in that library.

### Other declarations

Expand Down