Spelling (#35)

* spelling: corresponding

* spelling: inferred

* spelling: interrupt
diff --git a/packages/flutter_markdown/lib/src/style_sheet.dart b/packages/flutter_markdown/lib/src/style_sheet.dart
index e0dc79e..2d44c86 100644
--- a/packages/flutter_markdown/lib/src/style_sheet.dart
+++ b/packages/flutter_markdown/lib/src/style_sheet.dart
@@ -238,7 +238,7 @@
   /// The decoration to use for `hr` elements.
   final Decoration horizontalRuleDecoration;
 
-  /// A [Map] from element name to the cooresponding [TextStyle] object.
+  /// A [Map] from element name to the corresponding [TextStyle] object.
   Map<String, TextStyle> get styles => _styles;
   Map<String, TextStyle> _styles;
 
diff --git a/packages/flutter_markdown/lib/src/widget.dart b/packages/flutter_markdown/lib/src/widget.dart
index fc97cda..55bea0e 100644
--- a/packages/flutter_markdown/lib/src/widget.dart
+++ b/packages/flutter_markdown/lib/src/widget.dart
@@ -54,7 +54,7 @@
 
   /// The styles to use when displaying the Markdown.
   ///
-  /// If null, the styles are infered from the current [Theme].
+  /// If null, the styles are inferred from the current [Theme].
   final MarkdownStyleSheet styleSheet;
 
   /// The syntax highlighter used to color text in `pre` elements.
diff --git a/packages/flutter_markdown/test/flutter_markdown_test.dart b/packages/flutter_markdown/test/flutter_markdown_test.dart
index 7a53a3b..c8a2cbc 100644
--- a/packages/flutter_markdown/test/flutter_markdown_test.dart
+++ b/packages/flutter_markdown/test/flutter_markdown_test.dart
@@ -173,7 +173,7 @@
       createHttpClient = createMockImageHttpClient;
     });
 
-    testWidgets('should not interupt styling', (WidgetTester tester) async {
+    testWidgets('should not interrupt styling', (WidgetTester tester) async {
       await tester.pumpWidget(_boilerplate(const Markdown(
         data:'_textbefore ![alt](http://img) textafter_',
       )));