Skip to content

Commit 505c9c2

Browse files
fix typo and trailing commas
1 parent 9aa7c48 commit 505c9c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Also don't forget to remove any trailing commas.
4141
Basically, your file contain **an array of `CustomRecipe` objects**.
4242
### **`CustomeRecipe` object**
4343
`CustomRecipe` contain these properties:
44-
Key|Requirement|Value|Example|Definition|Default Value (if not defined)
44+
Key|Requirement|Value|Example|Definition|Default Value
4545
---|---|---|---|---|---
4646
`"CraftCategoryID"`|Required|`CraftCategoryId` or `int`|`"Drug"` or `8`|Recipe's category|None
4747
`"ResultItemID"`|Required|`ItemID` or `int`|`"Item_Kin"` or `2156`|Result item|None
@@ -72,18 +72,18 @@ The properties doesn't need to be in order, but Required properties must always
7272
"IngredientItemIDs": [
7373
2156,
7474
2156
75-
],
75+
]
7676
},
7777
{
7878
"CraftCategoryID": 8,
7979
"ResultItemID": 2154,
8080
"IngredientItemIDs": [
8181
2152,
8282
2152
83-
],
83+
]
8484
}
8585
]
8686
```
87-
First recipe is recipe to create Gold using 2 Silvers, most value are using enum string.
88-
Second recipe is recipe to create Platinum using 2 Gold, most value are using int.
89-
Third recipe is recipe to create Bronze using 2 Iron, this recipe created with using only the required parameters.
87+
First recipe is recipe to create Gold using 2 Silvers, most values are enum string.
88+
Second recipe is recipe to create Platinum using 2 Gold, all values are int.
89+
Third recipe is recipe to create Bronze using 2 Iron, created with only the required parameters.

0 commit comments

Comments
 (0)