Skip to content

Commit f0e3011

Browse files
committed
Capitalize Rust for consistency
1 parent 6fb9b6a commit f0e3011

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ doing something with it, then generating new input for our main program. This
7171
is also the reason procedural macros need a separate crate in order to work.
7272

7373
Fortunately, most of the heavy lifting (parsing and generating Rust code) is
74-
already done with the help of `syn` and `quote`. This means that for rust code
74+
already done with the help of `syn` and `quote`. This means that for Rust code
7575
generation, we can focus on the logic behind what we want to achieve more than
7676
making a parser for the complex syntax of the language.
7777

@@ -142,7 +142,7 @@ If you've used [`yew`](https://docs.rs/yew/ "docs.rs/yew"),
142142
[`leptos`](https://docs.rs/leptos/ "docs.rs/leptos") or any other web
143143
development library, then you'd know you can parse any `TokenStream` into a
144144
Rust `TokenStream`. This example doesn't go that in-depth with what you can do
145-
since in practice it's possible to make a programming language with rust's proc
145+
since in practice it's possible to make a programming language with Rust's proc
146146
macros. In fact, people have also done that with a
147147
[Python interpreter written in Rust](https://github.com/RustPython/RustPython "GitHub/RustPython/RustPython")
148148
or [Python bindings in Rust](https://github.com/PyO3/pyo3 "GitHub/PyO3/pyo3").

0 commit comments

Comments
 (0)