From cdc55c17ebf2d70d2a70644c0a5b28c74d65ca03 Mon Sep 17 00:00:00 2001 From: Pascal Welsch Date: Thu, 29 Nov 2018 14:01:42 +0100 Subject: [PATCH] Fix comment --- lib/src/k_map.dart | 2 +- lib/src/k_set.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/k_map.dart b/lib/src/k_map.dart index 5c5df7d9..eb73ab3f 100644 --- a/lib/src/k_map.dart +++ b/lib/src/k_map.dart @@ -11,7 +11,7 @@ import 'package:dart_kollection/dart_kollection.dart'; */ abstract class KMap implements KMapExtension { /** - * dart interop list for time critical operations such as sorting + * dart interop map for time critical operations such as sorting */ Map get map; diff --git a/lib/src/k_set.dart b/lib/src/k_set.dart index f19da5b2..e484566e 100644 --- a/lib/src/k_set.dart +++ b/lib/src/k_set.dart @@ -8,7 +8,7 @@ import 'package:dart_kollection/dart_kollection.dart'; */ abstract class KSet implements KCollection { /** - * dart interop list for time critical operations such as sorting + * dart interop set for time critical operations such as sorting */ Set get set;