Skip to content

Commit

Permalink
Fix some spelling nits (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Sep 19, 2023
1 parent de13ffe commit 8d6b10c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/src/helpers/extensions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/src/helpers/http.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8d6b10c

Please sign in to comment.