From 1012777858c42ea15fbb99d3804e7ec1072a7571 Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Fri, 12 May 2023 17:01:56 +0800 Subject: [PATCH] Fix translation problem in reflection documentation --- docs-source/src/en/api/special-features/reflection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-source/src/en/api/special-features/reflection.md b/docs-source/src/en/api/special-features/reflection.md index 664e4028..d580066d 100644 --- a/docs-source/src/en/api/special-features/reflection.md +++ b/docs-source/src/en/api/special-features/reflection.md @@ -1919,7 +1919,7 @@ At the same time, they all have their own corresponding package types in Java, s Similarly, arrays also have corresponding wrapper types, which also need to be distinguished from Java **primitive type keywords**. -For example, the encapsulation type of **byte[]** is **ByteArrayType** or **ArrayClass(ByteType)**, and the encapsulation type of **Byte[]** is **ByteArrayClass** or **ArrayClass(ByteClass )**, these types are also **unequal**. +For example, the encapsulation type of **byte[]** is **ByteArrayType** or **ArrayClass(ByteType)**, and the encapsulation type of **Byte[]** is **ByteArrayClass** or **ArrayClass(ByteClass)**, these types are also **unequal**. :::