Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Nov 29, 2018
1 parent ced24a0 commit cdc55c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/k_map.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import 'package:dart_kollection/dart_kollection.dart';
*/
abstract class KMap<K, V> implements KMapExtension<K, V> {
/**
* dart interop list for time critical operations such as sorting
* dart interop map for time critical operations such as sorting
*/
Map<K, V> get map;

Expand Down
2 changes: 1 addition & 1 deletion lib/src/k_set.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'package:dart_kollection/dart_kollection.dart';
*/
abstract class KSet<T> implements KCollection<T> {
/**
* dart interop list for time critical operations such as sorting
* dart interop set for time critical operations such as sorting
*/
Set<T> get set;

Expand Down

0 comments on commit cdc55c1

Please sign in to comment.