Skip to content

Commit 138b780

Browse files
committed
Make use of backtick consistent
1 parent d8809b8 commit 138b780

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ dist
1717
*.egg-info
1818

1919
# Local docs builds
20-
docs/api
21-
docs/_build
20+
docs/api/*
21+
docs/_build/*
2222
docs/_static/ultraplotrc
2323
docs/_static/rctable.rst
2424
docs/_static/*
@@ -33,6 +33,7 @@ sources
3333
*.pyc
3434
.*.pyc
3535
__pycache__
36+
*.ipynb
3637

3738
# OS files
3839
.DS_Store

ultraplot/axes/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317
The axes title. Can optionally be a sequence strings, in which case
318318
the title will be selected from the sequence according to `~Axes.number`.
319319
abc : bool or str or sequence, default: :rc:`abc`
320-
The "a-b-c" subplot label style. Must contain the character `a` or ``A``,
320+
The "a-b-c" subplot label style. Must contain the character `a` or `A`,
321321
for example ``'a.'``, or ``'A'``. If ``True`` then the default style of
322322
``'a'`` is used. The `a` or ``A`` is replaced with the alphabetic character
323323
matching the `~Axes.number`. If `~Axes.number` is greater than 26, the

0 commit comments

Comments
 (0)