@@ -116,7 +116,7 @@ Here are the classes:
116
116
this data can be decoded by the standard Python module :mod: `sndhdr `, then the
117
117
subtype will be automatically included in the :mailheader: `Content-Type ` header.
118
118
Otherwise you can explicitly specify the audio subtype via the *_subtype *
119
- parameter . If the minor type could not be guessed and *_subtype * was not given,
119
+ argument . If the minor type could not be guessed and *_subtype * was not given,
120
120
then :exc: `TypeError ` is raised.
121
121
122
122
Optional *_encoder * is a callable (i.e. function) which will perform the actual
@@ -142,7 +142,7 @@ Here are the classes:
142
142
this data can be decoded by the standard Python module :mod: `imghdr `, then the
143
143
subtype will be automatically included in the :mailheader: `Content-Type ` header.
144
144
Otherwise you can explicitly specify the image subtype via the *_subtype *
145
- parameter . If the minor type could not be guessed and *_subtype * was not given,
145
+ argument . If the minor type could not be guessed and *_subtype * was not given,
146
146
then :exc: `TypeError ` is raised.
147
147
148
148
Optional *_encoder * is a callable (i.e. function) which will perform the actual
@@ -183,12 +183,12 @@ Here are the classes:
183
183
:class: `MIMEText ` class is used to create MIME objects of major type
184
184
:mimetype: `text `. *_text * is the string for the payload. *_subtype * is the
185
185
minor type and defaults to :mimetype: `plain `. *_charset * is the character
186
- set of the text and is passed as a parameter to the
186
+ set of the text and is passed as an argument to the
187
187
:class: `~email.mime.nonmultipart.MIMENonMultipart ` constructor; it defaults
188
188
to ``us-ascii `` if the string contains only ``ascii `` codepoints, and
189
189
``utf-8 `` otherwise.
190
190
191
- Unless the `` _charset `` parameter is explicitly set to ``None ``, the
191
+ Unless the * _charset * argument is explicitly set to ``None ``, the
192
192
MIMEText object created will have both a :mailheader: `Content-Type ` header
193
193
with a ``charset `` parameter, and a :mailheader: `Content-Transfer-Endcoding `
194
194
header. This means that a subsequent ``set_payload `` call will not result
0 commit comments