Skip to content

Commit

Permalink
🔧 MAINTAIN: Fix typo in error message (#343)
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Sewell <[email protected]>
  • Loading branch information
luketudge and chrisjsewell authored Sep 27, 2021
1 parent 992d4d7 commit c54becd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion myst_nb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def validate_config_values(app: Sphinx, config):
for name, converter in app.config["nb_custom_formats"].items():
if not isinstance(name, str):
raise MystNbConfigError(
f"'nb_custom_formats' keys should br a string: {name}"
f"'nb_custom_formats' keys should be a string: {name}"
)
if isinstance(converter, str):
app.config["nb_custom_formats"][name] = (converter, {})
Expand Down

0 comments on commit c54becd

Please sign in to comment.