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

fix: english little corrections #878

Merged
merged 1 commit into from
Aug 30, 2023
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 modular_core/test/src/tracker_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void main() {
tracker.runApp(module);
});

test('thwow error if runApp not iniciate module', () {
test('throw error if runApp not initiate module', () {
tracker.finishApp();
expect(() => tracker.module, throwsA(isA<TrackerNotInitiated>()));
});
Expand Down Expand Up @@ -136,7 +136,7 @@ class MyModule extends Module {
CustomRoute(
'/',
data: 'first',
middlewares: [CustomMidleware()],
middlewares: [CustomMiddleware()],
children: [
CustomRoute('/second', data: 'second'),
],
Expand Down Expand Up @@ -208,7 +208,7 @@ class ImportedModule2 extends Module {

class EmptyModule extends Module {}

class CustomMidleware implements Middleware {
class CustomMiddleware implements Middleware {
@override
FutureOr<ModularRoute?> pre(ModularRoute route) {
pos(route, '');
Expand Down
Loading