Merge pull request #15 from Rick053/patch-1

Fixed typo in doc string
diff --git a/lib/pedantic.dart b/lib/pedantic.dart
index c48d67b..f6489f5 100644
--- a/lib/pedantic.dart
+++ b/lib/pedantic.dart
@@ -6,7 +6,7 @@
 
 /// Indicates to tools that [future] is intentionally not `await`-ed.
 ///
-/// In an `async` context, it is normally expected than all [Future]s are
+/// In an `async` context, it is normally expected that all [Future]s are
 /// awaited, and that is the basis of the lint `unawaited_futures`. However,
 /// there are times where one or more futures are intentionally not awaited.
 /// This function may be used to ignore a particular future. It silences the