Skip to content

Commit 6428634

Browse files
committed
chore: wording fixes to readme
1 parent 6c9d763 commit 6428634

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A complete unparser for rustpython-parser ASTs.
44

55
## Acknowledgement
66

7-
I created this library because I quickly needed a way to turn rustpython-parser ASTs back to some form of Python source code. Since the unparser contained within rustpython-ast only supports expressions and not statements, I started implementing my own unparser by taking heavy inspiration from rustpython's unparser and the unparser in the python standard library. Therefore, most of credit goes to the teams behind the ast standard library module and the RustPython team. I only glued the parts I needed together to a complete unparser in this repository.
7+
I created this library because I quickly needed a way to turn rustpython-parser ASTs back to some form of Python source code. Since the unparser contained within rustpython-ast only supports expressions and not statements, I started implementing my own unparser by taking heavy inspiration from rustpython's unparser and the unparser in the python standard library. Therefore, most credit goes to the respective teams behind the ast standard library module and RustPython. I only glued the parts I needed together to a complete unparser in this repository.
88

99
## Contributing
1010

@@ -18,7 +18,7 @@ If you would like to fix the issue yourself, you can create an example in one of
1818
use rustpython_unparser::Unparser;
1919
use rustpython_parser::ast::Suite;
2020
use rustpython_parser::Parse;
21-
use std::fs;
21+
2222
fn main() {
2323
// ...
2424
let unparser = Unparser::new();

0 commit comments

Comments
 (0)