diff --git a/lib/src/helpers/extensions.dart b/lib/src/helpers/extensions.dart index e8362710..ad67f0ff 100644 --- a/lib/src/helpers/extensions.dart +++ b/lib/src/helpers/extensions.dart @@ -7,11 +7,11 @@ /// /// The extensions here are added by hand over time, depending on needs and use /// cases. They currently consist of: -/// * renames: methods that provide the same functionaly, but use a more +/// * renames: methods that provide the same functionality, but use a more /// idiomatic Dart name. Typically these renames match the names used in /// `dart:html` in the past. /// -//// * operators: for exmaple access local storage items using `operator[]`. +//// * operators: for example access local storage items using `operator[]`. /// /// * helper logic: commonly these are methods that were very useful and /// popular from `dart:html` (like the context2D getter in diff --git a/lib/src/helpers/http.dart b/lib/src/helpers/http.dart index 4752f087..3dea46e2 100644 --- a/lib/src/helpers/http.dart +++ b/lib/src/helpers/http.dart @@ -48,7 +48,7 @@ import 'events/events.dart' show XHRGetters; /// * [JS XMLHttpRequest](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest) /// * [Using XMLHttpRequest](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest/Using_XMLHttpRequest) class HttpRequest { - // The lint is ignored because these are purposesly made to match the old + // The lint is ignored because these are purposely made to match the old // names used in `dart:html` // ignore:constant_identifier_names static const int DONE = 4;