Bladeren bron

fix title

ruki 6 maanden geleden
bovenliggende
commit
7d39b86d82
1 gewijzigde bestanden met toevoegingen van 4 en 4 verwijderingen
  1. 4 4
      docs/api/description/project-target.md

+ 4 - 4
docs/api/description/project-target.md

@@ -1,7 +1,7 @@
 
 
 We can use `target("test")` to define a project target named "test", each target generates an executable program, a static library, or a dynamic library.
 We can use `target("test")` to define a project target named "test", each target generates an executable program, a static library, or a dynamic library.
 
 
-:::tip NOTE 
+:::tip NOTE
 All interfaces of target can be set in the global scope, which affects all sub-targets.
 All interfaces of target can be set in the global scope, which affects all sub-targets.
 :::
 :::
 For example:
 For example:
@@ -17,7 +17,7 @@ target("test2")
     add_files("*.c")
     add_files("*.c")
 ```
 ```
 
 
-:::tip NOTE 
+:::tip NOTE
 `target()' interface can be repeatedly invoked in different places to set the same target.
 `target()' interface can be repeatedly invoked in different places to set the same target.
 :::
 :::
 
 
@@ -197,7 +197,7 @@ For example, with the above configuration, we can compile two dependent programs
 
 
 #### headeronly
 #### headeronly
 
 
--Pure header file target type
+- Pure header file target type
 
 
 After 2.5.9, we added the `headeronly` target type. For target programs of this type, we will not actually compile them because it has no source files to be compiled.
 After 2.5.9, we added the `headeronly` target type. For target programs of this type, we will not actually compile them because it has no source files to be compiled.
 
 
@@ -3467,7 +3467,7 @@ We can also execute `xmake test -vD` to view detailed test failure error message
 
 
 #### Run the specified test target
 #### Run the specified test target
 
 
-We can also specify to run a test with a specified 
+We can also specify to run a test with a specified
 
 
 ```bash
 ```bash
 $ xmake test targetname/testname
 $ xmake test targetname/testname