added contributer name and filled typo in README

This commit is contained in:
Sparsh 2023-09-21 18:37:02 +05:30
parent 19d4b07515
commit fd134e84cb
2 changed files with 2 additions and 1 deletions

1
CONTRIBUTORS.md vendored
View File

@ -25,6 +25,7 @@ Following are the wonderful people (in no specific order) who have contributed t
| Diptangsu Goswami | [diptangsu](https://github.com/diptangsu) | [#193](https://github.com/satwikkansal/wtfpython/issues/193) |
| Charles | [charles-l](https://github.com/charles-l) | [#245](https://github.com/satwikkansal/wtfpython/issues/245)
| LiquidFun | [LiquidFun](https://github.com/LiquidFun) | [#267](https://github.com/satwikkansal/wtfpython/issues/267)
| Sparsh-Verencar | [Sparsh-Verencar](https://github.com/Sparsh-Verencar) | [#311](https://github.com/satwikkansal/wtfpython/issues/311)
---

2
README.md vendored
View File

@ -1343,7 +1343,7 @@ True
```py
>>> r'wt\"f' == 'wt\\"f'
True
>>> print(repr(r'wt\"f')
>>> print(repr(r'wt\"f'))
'wt\\"f'
>>> print("\n")