-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the TOML specification string values #259
Comments
Is @MakS1mKa228 |
data class Command(val name:String, val description: String, val options: List<Option>? = null)
data class Option(val name:String, val description: String)
|
In TOML spec it's https://toml.io/en/v1.0.0#array-of-tables ([[options]]) But it is not yet supported in Ktoml... |
And exactly... this is considered an array of tables. How soon will this functionality be implemented? |
Line 10: According to the TOML specification string values (even Enums) should be wrapped (start and end) with quotes (""), but the following value was not: <{ name = "user">.
The text was updated successfully, but these errors were encountered: