Skip to content

Fix a typo: weak instead of week #404

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions lib/get_it.dart
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ abstract class GetIt {
String? instanceName,
});

/// Like registerFactory but holds a week reference to the last created instance
/// Like registerFactory but holds a weak reference to the last created instance
/// if the instance wasn't garbage collected yet it will return this instance instead of creating a new one
void registerCachedFactory<T extends Object>(
FactoryFunc<T> factoryFunc, {
Expand Down Expand Up @@ -262,7 +262,7 @@ abstract class GetIt {
String? instanceName,
});

/// Like registerFactoryParam but holds a week reference to the last created instance
/// Like registerFactoryParam but holds a weak reference to the last created instance
/// if the instance wasn't garbage collected yet, and if the passed parameter haven't changed,
/// it will return this instance instead of creating a new one
void registerCachedFactoryParam<T extends Object, P1, P2>(
Expand All @@ -282,7 +282,7 @@ abstract class GetIt {
String? instanceName,
});

/// Like registerFactoryAsync but holds a week reference to the last created instance
/// Like registerFactoryAsync but holds a weak reference to the last created instance
/// if the instance wasn't garbage collected yet it will return this instance instead of creating a new one
void registerCachedFactoryAsync<T extends Object>(
FactoryFunc<T> factoryFunc, {
Expand Down Expand Up @@ -314,7 +314,7 @@ abstract class GetIt {
String? instanceName,
});

/// Like registerFactoryParamAsync but holds a week reference to the last created instance
/// Like registerFactoryParamAsync but holds a weak reference to the last created instance
/// if the instance wasn't garbage collected yet, and if the passed parameter haven't changed,
/// it will return this instance instead of creating a new one
void registerCachedFactoryParamAsync<T extends Object, P1, P2>(
Expand Down