How to contribute small bugfixes?

is talking about redeclaration of the variable X but there is no X in the german example code?!
there is one in the english example.
i would like to checkout the source and contribute those small changes everywhere i find minor errors like this.

how can i do this?

fn main() {
    let hello_world = "Hello world";
    println!("{}", hello_world);
    
    let hello_world = "Hello playground";
    println!("{}", hello_world);
}

(Playground)

After a few seconds of googling, I found the corresponding repo.

The error in question is here:

thank you shard!
your google-fu is superior to mine, for i did not find it at all.

case closed, class dismissed :slight_smile:

1 Like

well no.
the repository has all the documentation in it, but the SOURCE CODE seems to be somewhere else?
i think it makes sense to have the same source code on all languages?

The Rust source code seems to be embedded in the playground URLs in the same file.