Skip to content

Commit

Permalink
[docs] Final fixup for the docs (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
iiPythonx committed Mar 10, 2024
1 parent 9e52b2c commit 8ed59da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Any x++ files should always end in the `.xpp` extension.

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:

```xconfig
```json
{
"main": "main.xpp"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Any x++ files should always end in the `.xpp` extension.

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:

```xconfig
```json
{
"main": "main.xpp"
}
Expand Down
6 changes: 3 additions & 3 deletions docs/documents/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@

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:

```xconfig
```json
{
"main": "main.xpp"
}
```

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

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

### Main

```xconfig
```json
{
"main": <path>
}
Expand Down

0 comments on commit 8ed59da

Please sign in to comment.