Fixed typo

This commit is contained in:
Dreaded_X 2023-09-03 17:57:16 +02:00
parent d71af628ab
commit 86bb5040fa
Signed by: Dreaded_X
GPG Key ID: 96C9F2B15F72C54B
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
An Applied Physics student with a passion for programming! 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. 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. 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. I'm also quite experienced with Linux as I have been daily driving it for the past decade at this point.

View File

@ -1,7 +1,7 @@
An Applied Physics student with a passion for programming! 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. 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. 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. I'm also quite experienced with Linux as I have been daily driving it for the past decade at this point.

View File

@ -12,6 +12,8 @@ use walkdir::WalkDir;
fn main() -> anyhow::Result<()> { fn main() -> anyhow::Result<()> {
dotenvy::dotenv().ok(); dotenvy::dotenv().ok();
generate_readme()?;
generate_lang("en")?; generate_lang("en")?;
generate_lang("nl")?; generate_lang("nl")?;
@ -19,8 +21,6 @@ fn main() -> anyhow::Result<()> {
generate_latex_from_yml()?; generate_latex_from_yml()?;
generate_latex_private()?; generate_latex_private()?;
generate_readme()?;
Ok(()) Ok(())
} }