aboutsummaryrefslogtreecommitdiff
path: root/guide/configuration.md
diff options
context:
space:
mode:
authorOskari Timperi <oskari.timperi@iki.fi>2019-10-26 10:40:10 +0300
committerOskari Timperi <oskari.timperi@iki.fi>2019-10-26 10:40:10 +0300
commitc07ed1986623ab697c1e76822afc416fc76a8caa (patch)
treee28e6cbe2fa8481d3493f5794e1f14b9ff68acf1 /guide/configuration.md
parent868fba56526185e2939b21af77285f25b4a922aa (diff)
downloadxmake-docs-c07ed1986623ab697c1e76822afc416fc76a8caa.tar.gz
xmake-docs-c07ed1986623ab697c1e76822afc416fc76a8caa.zip
Fix typosfix-typos
Diffstat (limited to 'guide/configuration.md')
-rw-r--r--guide/configuration.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/guide/configuration.md b/guide/configuration.md
index baca8055..d81a2aec 100644
--- a/guide/configuration.md
+++ b/guide/configuration.md
@@ -4,7 +4,7 @@ Set compilation configuration before building project with command `xmake f|conf
And if you want to known more options, please run: `xmake f --help`。
<p class="tip">
- You can use short or long command option, for exmaple: <br>
+ You can use short or long command option, for example: <br>
`xmake f` or `xmake config`.<br>
`xmake f -p linux` or `xmake config --plat=linux`.
</p>
@@ -91,9 +91,9 @@ Fro other cross platform:
```bash
$ xmake f -p cross --sdk=/usr/local/arm-xxx-gcc/ [--bin=/sdk/bin] [--cross=arm-linux-]
$ xmake
-```
+```
-For custem cross platform (`is_plat("myplat")`):
+For custom cross platform (`is_plat("myplat")`):
```bash
$ xmake f -p myplat --sdk=/usr/local/arm-xxx-gcc/ [--bin=/sdk/bin] [--cross=arm-linux-]
@@ -319,12 +319,12 @@ $ xmake
```
<p class="tip">
- You can use short or long command option, for exmaple: `xmake g` or `xmake global`.<br>
+ You can use short or long command option, for example: `xmake g` or `xmake global`.<br>
</p>
## Clean Configuration
-We can clean all cached configuration and re-configure projecct.
+We can clean all cached configuration and re-configure project.
```bash
$ xmake f -c