Skip to content

Commit

Permalink
fixing html warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tomarra committed Dec 20, 2024
1 parent 2acece7 commit 589bcb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/src/cli/flutter_cli.dart
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ typedef FlutterTestRunner = Stream<TestEvent> Function({
bool runInShell,
});

/// A method which returns a [Future<MasonGenerator>] given a [MasonBundle].
/// A method which returns a [`Future<MasonGenerator>`] given a [MasonBundle].
typedef GeneratorBuilder = Future<MasonGenerator> Function(MasonBundle);

/// Flutter CLI
Expand Down
4 changes: 2 additions & 2 deletions lib/src/commands/create/commands/create_subcommand.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ final RegExp _orgNameRegExp = RegExp(r'^[a-zA-Z][\w-]*(\.[a-zA-Z][\w-]*)+$');
const _defaultOrgName = 'com.example.verygoodcore';
const _defaultDescription = 'A Very Good Project created by Very Good CLI.';

/// A method which returns a [Future<MasonGenerator>] given a [MasonBundle].
/// A method which returns a [`Future<MasonGenerator>`] given a [MasonBundle].
typedef MasonGeneratorFromBundle = Future<MasonGenerator> Function(MasonBundle);

/// A method which returns a [Future<MasonGenerator>] given a [Brick].
/// A method which returns a [`Future<MasonGenerator>`] given a [Brick].
typedef MasonGeneratorFromBrick = Future<MasonGenerator> Function(Brick);

/// {@template create_subcommand}
Expand Down

0 comments on commit 589bcb0

Please sign in to comment.