-
Notifications
You must be signed in to change notification settings - Fork 134
Open
Labels
P2A bug or feature request we're likely to work onA bug or feature request we're likely to work oncustomer-flutterIssues originating from important to FlutterIssues originating from important to Fluttertype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
We redid a bunch of classes that were declared like this:
abstract class ReallyAMixin {
factory ReallyAMixin._() => null;
...
}
To this:
mixin ReallyAMixin {
}
Which now is resulting in a new Dart doc link (...-mixin.html instead of ...-class.html), which is breaking external links. Is there some sensible way we could alias ReallyAMixin-class.html to ReallyAMixin-mixin.html? Obiviously for docs we control we should just update the links, but this might hurt things like old StackOverflow answers or blog posts.
Metadata
Metadata
Assignees
Labels
P2A bug or feature request we're likely to work onA bug or feature request we're likely to work oncustomer-flutterIssues originating from important to FlutterIssues originating from important to Fluttertype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug