Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9b767c8

Browse files
committed
Fixing typos
1 parent e8101f1 commit 9b767c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ consider the following points:
3434
link to any relevant issues.
3535
3636
- If you are contributing fixes to docstrings, please pay attention to
37-
http://matplotlib.org/devel/documenting_mpl.html#formatting. In particular,
37+
https://matplotlib.org/stable/devel/documenting_mpl.html#formatting-conventions. In particular,
3838
note the difference between using single backquotes, double backquotes, and
3939
asterisks in the markup.
4040

lib/matplotlib/axis.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ class XAxis(Axis):
251251
) -> None: ...
252252
def tick_top(self) -> None: ...
253253
def tick_bottom(self) -> None: ...
254-
def get_ticks_position(self) -> Literal["top", "bottom", "default", "unkown"]: ...
254+
def get_ticks_position(self) -> Literal["top", "bottom", "default", "unknown"]: ...
255255
def get_tick_space(self) -> int: ...
256256

257257
class YAxis(Axis):
@@ -267,5 +267,5 @@ class YAxis(Axis):
267267
) -> None: ...
268268
def tick_right(self) -> None: ...
269269
def tick_left(self) -> None: ...
270-
def get_ticks_position(self) -> Literal["left", "right", "default", "unkown"]: ...
270+
def get_ticks_position(self) -> Literal["left", "right", "default", "unknown"]: ...
271271
def get_tick_space(self) -> int: ...

0 commit comments

Comments
 (0)