@@ -92,14 +92,14 @@ class TransformConfiguration {
92
92
/// The list of DOM transformers being used
93
93
final List <DomTransformer > domTransformers;
94
94
95
- /// The list of text transfomers that are used
95
+ /// The list of text transformers that are used
96
96
/// before a plain text message without HTML part is converted into HTML
97
97
final List <TextTransformer > textTransformers;
98
98
99
99
/// Optional custom values, `null` unless specified.
100
100
final Map <String , dynamic >? customValues;
101
101
102
- /// Provides easy access to a standard configuation
102
+ /// Provides easy access to a standard configuration
103
103
/// that does not block external images.
104
104
static const TransformConfiguration standardConfiguration =
105
105
TransformConfiguration (
@@ -154,7 +154,7 @@ abstract class DomTransformer {
154
154
155
155
/// Transforms the [document] of the [message] using [configuration] .
156
156
///
157
- /// All changes will be visible to subsequenc transformers.
157
+ /// All changes will be visible to subsequent transformers.
158
158
void process (Document document, MimeMessage message,
159
159
TransformConfiguration configuration);
160
160
@@ -237,7 +237,7 @@ class MimeMessageTransformer {
237
237
238
238
/// Transforms plain text messages.
239
239
abstract class TextTransformer {
240
- /// Createsa new text transformer
240
+ /// Creates a new text transformer
241
241
const TextTransformer ();
242
242
243
243
/// Transforms the given [text] of the [message] using the [configuration ]
@@ -323,7 +323,7 @@ extension HtmlTransform on MimeMessage {
323
323
return document.outerHtml;
324
324
}
325
325
326
- /// Transforms this message to the innter BODY HTML code.
326
+ /// Transforms this message to the inner BODY HTML code.
327
327
///
328
328
/// Set [blockExternalImages] to `true` in case external images should
329
329
/// be blocked.
0 commit comments