1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-14 14:10:05 +02:00

ko: fix typo (#1326)

fixed a typo
This commit is contained in:
JWSong 2023-10-08 20:42:41 +09:00 committed by GitHub
parent ac8e3ed14f
commit 8b5f3fd238
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2512,7 +2512,7 @@ msgid ""
"addition you get fast and predictable performance like C and C++ (no garbage "
"collector) as well as access to low-level hardware (should you need it)"
msgstr ""
"Java, Go, Python, JaveScript: 이 언어들과 동일한 메모리 안정성과 함께, '하이"
"Java, Go, Python, JavaScript: 이 언어들과 동일한 메모리 안정성과 함께, '하이"
"레벨'언어의 느낌을 느낄 수 있습니다. 거기에 더해, 가비지 컬렉터가 없는 C/C+"
"+와 유사한 수준의 빠르고 예측 가능한 성능을 기대할 수 있습니다. 그리고 필요"
"한 경우 저수준 하드웨어를 다루는 코드로 작성할 수 있습니다."
@ -4976,7 +4976,7 @@ msgstr "가비지 컬렉터(GC)는 사용되지 않는 메모리를 찾아 해
#: src/memory-management/garbage-collection.md:9
msgid "Java Example"
msgstr "Jave 예제"
msgstr "Java 예제"
#: src/memory-management/garbage-collection.md:11
msgid "The `person` object is not deallocated after `sayHello` returns:"