Skip to content

Commit 9ed0412

Browse files
authoredNov 30, 2021
Merge pull request #472 from simonthor/patch-1
Fix typo in README.md
2 parents c9970e4 + 1ef4d07 commit 9ed0412

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ It is my intention to archive the `matplotlib/mpl-finance` repository soon, and
584584

585585
**With this new ` mplfinance ` package installed, in addition to the new API, users can still access the old API**.<br> The old API may be removed someday, but for the foreseeable future we will keep it ... at least until we are very confident that users of the old API can accomplish the same things with the new API.
586586

587-
To access the old API with the new ` mplfinance ` package installed, change the old import statments
587+
To access the old API with the new ` mplfinance ` package installed, change the old import statements
588588

589589
**from:**
590590

‎src/mplfinance/_version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
version_info = (0, 12, 8, 'beta', 0)
2+
version_info = (0, 12, 8, 'beta', 1)
33

44
_specifier_ = {'alpha': 'a','beta': 'b','candidate': 'rc','final': ''}
55

66
__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
7-
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))
7+
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))

0 commit comments

Comments
 (0)
Please sign in to comment.