Correct the data type of uuid property in docs

This commit is contained in:
Netkas 2023-10-10 14:18:49 -04:00
parent a1f1541854
commit 1b8079f96b
No known key found for this signature in database
GPG key ID: 5DAF58535614062B

View file

@ -1489,7 +1489,7 @@ The `Assembly` object furnishes metadata about your project, including its name,
| Property Name | Object Type | Required | Example | Description |
|---------------|--------------------|----------|-------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------|
| `uuid` | `string (UUID v4)` | Yes | `2675498a-829e-4d1a-abdf-b9dbea8005c6` | The Universally Unique Identifier (UUID) for the project. This is generated by `ncc` when you first create a project and is used to uniquely identify it. |
| `uuid` | `string` (UUID v4) | Yes | `2675498a-829e-4d1a-abdf-b9dbea8005c6` | The Universally Unique Identifier (UUID) for the project. This is generated by `ncc` when you first create a project and is used to uniquely identify it. |
| `name` | `string` | Yes | `ExampleLibrary` | The project's name. It's crucial to avoid special characters and spaces when naming the project, as it serves as a unique identifier. |
| `package` | `string` | Yes | `com.example.library` | The package name, following package naming conventions, similar to Java packages. |
| `version` | `string` | Yes | `1.0.0` | The package version, adhering to the Semantic Versioning format to accurately indicate the project's version. |