diff --git a/README.md b/README.md index 6ab6d17..c44c665 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ An Applied Physics student with a passion for programming! I have always enjoyed programming as a hobby, and would love to make it my career. -Since then I have also combining this hobby with the hardware side of things. +Since then I have also combined this hobby with the hardware side of things. Most recently I have picked up [Rust], and have fallen in love with this programming language. I'm also quite experienced with Linux as I have been daily driving it for the past decade at this point. diff --git a/markdown/blurb.en.md b/markdown/blurb.en.md index 9ae62ff..334c4ba 100644 --- a/markdown/blurb.en.md +++ b/markdown/blurb.en.md @@ -1,7 +1,7 @@ An Applied Physics student with a passion for programming! I have always enjoyed programming as a hobby, and would love to make it my career. -Since then I have also combining this hobby with the hardware side of things. +Since then I have also combined this hobby with the hardware side of things. Most recently I have picked up [Rust], and have fallen in love with this programming language. I'm also quite experienced with Linux as I have been daily driving it for the past decade at this point. diff --git a/tool/src/main.rs b/tool/src/main.rs index 6c4d3ff..eb7d9c7 100644 --- a/tool/src/main.rs +++ b/tool/src/main.rs @@ -12,6 +12,8 @@ use walkdir::WalkDir; fn main() -> anyhow::Result<()> { dotenvy::dotenv().ok(); + generate_readme()?; + generate_lang("en")?; generate_lang("nl")?; @@ -19,8 +21,6 @@ fn main() -> anyhow::Result<()> { generate_latex_from_yml()?; generate_latex_private()?; - generate_readme()?; - Ok(()) }