$, cargo-*: add Korean translation (#13943)

This commit is contained in:
HoJeong Im
2024-10-03 18:48:23 +09:00
committed by GitHub
parent 7cc6c7195a
commit 0327318dc0
38 changed files with 763 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# cargo doc
> Rust 패키지의 문서를 작성.
> 더 많은 정보: <https://doc.rust-lang.org/cargo/commands/cargo-doc.html>.
- 현재 프로젝트와 모든 종속성에 대한 문서를 작성:
`cargo doc`
- 종속성에 대한 문서를 작성하지 않음:
`cargo doc --no-deps`
- 브라우저에서 문서를 빌드하고 오픈:
`cargo doc --open`
- 특정 패키지의 문서를 빌드하고 확인:
`cargo doc --open --package {{패키지}}`