diff --git a/pages.de/common/cargo.md b/pages.de/common/cargo.md index 71f8d69c8..6d0f70954 100644 --- a/pages.de/common/cargo.md +++ b/pages.de/common/cargo.md @@ -30,4 +30,4 @@ - Erstelle (bzw. kompiliere) ein Rust-Projekt mit einer bestimmten Anzahl an Threads (standardmäßig die Anzahl der CPU-Kerne): -`cargo build -j {{thread_anzahl}}` +`cargo build --jobs {{thread_anzahl}}` diff --git a/pages.it/common/cargo.md b/pages.it/common/cargo.md index d9ae80c42..ee10c859b 100644 --- a/pages.it/common/cargo.md +++ b/pages.it/common/cargo.md @@ -30,4 +30,4 @@ - Builda utilizzando più job (thread) paralleli: -`cargo build -j {{numero_job}}` +`cargo build --jobs {{numero_job}}` diff --git a/pages.ko/common/cargo.md b/pages.ko/common/cargo.md index f24c1d913..179679087 100644 --- a/pages.ko/common/cargo.md +++ b/pages.ko/common/cargo.md @@ -30,4 +30,4 @@ - 특정 쓰레드 수를 사용하여 구축(기본값은 CPU 코어 수): -`cargo build -j {{작업}}` +`cargo build --jobs {{작업}}` diff --git a/pages.nl/common/cargo.md b/pages.nl/common/cargo.md index f77be83e0..956e97913 100644 --- a/pages.nl/common/cargo.md +++ b/pages.nl/common/cargo.md @@ -30,4 +30,4 @@ - Bouw met een gegeven aantal taken. (Standaard is het aantal CPU-kernen): -`cargo build -j {{taken}}` +`cargo build --jobs {{aantal_taken}}` diff --git a/pages/common/cargo.md b/pages/common/cargo.md index e06dde804..ab65143e4 100644 --- a/pages/common/cargo.md +++ b/pages/common/cargo.md @@ -30,4 +30,4 @@ - Build using a specific number of threads (default is the number of CPU cores): -`cargo build -j {{jobs}}` +`cargo build --jobs {{number_of_threads}}`