Skip to content

Commit c54becd

Browse files
🔧 MAINTAIN: Fix typo in error message (#343)
Co-authored-by: Chris Sewell <chrisj_sewell@hotmail.com>
1 parent 992d4d7 commit c54becd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

myst_nb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def validate_config_values(app: Sphinx, config):
210210
for name, converter in app.config["nb_custom_formats"].items():
211211
if not isinstance(name, str):
212212
raise MystNbConfigError(
213-
f"'nb_custom_formats' keys should br a string: {name}"
213+
f"'nb_custom_formats' keys should be a string: {name}"
214214
)
215215
if isinstance(converter, str):
216216
app.config["nb_custom_formats"][name] = (converter, {})

0 commit comments

Comments
 (0)