##// END OF EJS Templates
Minor typo, casing, and plurality fixes
Kyle Kelley -
Show More
@@ -35,7 +35,7 b' from IPython.utils.py3compat import string_types'
35 35 #-----------------------------------------------------------------------------
36 36
37 37 def _safe_exists(path):
38 """check path, but don't let exceptions raise"""
38 """Check path, but don't let exceptions raise"""
39 39 try:
40 40 return os.path.exists(path)
41 41 except Exception:
@@ -60,7 +60,7 b' def display(*objs, **kwargs):'
60 60 format data dict. If this is set *only* the format types included
61 61 in this list will be computed.
62 62 exclude : list or tuple, optional
63 A list of format type string (MIME types) to exclue in the format
63 A list of format type strings (MIME types) to exclude in the format
64 64 data dict. If this is set all format types will be computed,
65 65 except for those included in this argument.
66 66 """
General Comments 0
You need to be logged in to leave comments. Login now