diff --git a/docs/en/docs/ApplicationDev/using-gcc-for-compilation.md b/docs/en/docs/ApplicationDev/using-gcc-for-compilation.md index 84997d895bba8099d2bc4a18020fbc4f2b37ed07..af7310a5aea87fbadfffd20f63d0349c4c6305cf 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