Skip to content

Commit 8ed59da

Browse files
committed
[docs] Final fixup for the docs (for now)
1 parent 9e52b2c commit 8ed59da

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Any x++ files should always end in the `.xpp` extension.
9999

100100
You can edit the main entry file by editing the configuration in `.xconfig`. It is a JSON-like file that contains all the configurations for your x++ project. Within it, you should see:
101101

102-
```xconfig
102+
```json
103103
{
104104
"main": "main.xpp"
105105
}

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Any x++ files should always end in the `.xpp` extension.
9999

100100
You can edit the main entry file by editing the configuration in `.xconfig`. It is a JSON-like file that contains all the configurations for your x++ project. Within it, you should see:
101101

102-
```xconfig
102+
```json
103103
{
104104
"main": "main.xpp"
105105
}

docs/documents/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@
3434

3535
The configuration file defines what the project would do on execution. It is always placed in the `.xconfig` file and should be written as if it is within a `*.json` file. If one is not found in the project, the default configuration is used internally instead:
3636

37-
```xconfig
37+
```json
3838
{
3939
"main": "main.xpp"
4040
}
4141
```
4242

4343
The configuration file can also contain non-essential information, such as the author, version, or description of your project:
4444

45-
```xconfig
45+
```json
4646
{
4747
"author": "my-name",
4848
"contributors": [
@@ -61,7 +61,7 @@ The configuration file can also contain non-essential information, such as the a
6161

6262
### Main
6363

64-
```xconfig
64+
```json
6565
{
6666
"main": <path>
6767
}

0 commit comments

Comments
 (0)