From 35d65e17cbe6852a47d1d358b6d399759466a140 Mon Sep 17 00:00:00 2001 From: cjbzl Date: Fri, 30 May 2025 07:19:15 +0000 Subject: [PATCH] English Translation Signed-off-by: cjbzl --- docs/en/docs/ApplicationDev/using-gcc-for-compilation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/ApplicationDev/using-gcc-for-compilation.md b/docs/en/docs/ApplicationDev/using-gcc-for-compilation.md index 84997d895..af7310a5a 100644 --- a/docs/en/docs/ApplicationDev/using-gcc-for-compilation.md +++ b/docs/en/docs/ApplicationDev/using-gcc-for-compilation.md @@ -240,7 +240,7 @@ There are two methods provided for compiling multiple source files. - Compile each source file, and then link the target files generated after compilation. During compilation, only modified files need to be recompiled. - For example, compile **test1.c** and **test2.c**, and link the target files **test1.o** and **test2.o** to the executable file **test**. + Example: Compile **test1.c** and **test2.c**, and link the target files **test1.o** and **test2.o** to the executable file **test**. ```shell gcc -c test1.c -- Gitee