Fix formatting of `compatibility_minimum` examples
Without quotes the values is parsed as a float, breaking in various cases.pull/1226/head
parent
9a6c741d5d
commit
b3596a18e1
|
@ -87,7 +87,7 @@ See [example.gdextension](test/project/example.gdextension) used in the test pro
|
||||||
[configuration]
|
[configuration]
|
||||||
|
|
||||||
entry_symbol = "example_library_init"
|
entry_symbol = "example_library_init"
|
||||||
compatibility_minimum = 4.1
|
compatibility_minimum = "4.1"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[configuration]
|
[configuration]
|
||||||
|
|
||||||
entry_symbol = "example_library_init"
|
entry_symbol = "example_library_init"
|
||||||
compatibility_minimum = 4.1
|
compatibility_minimum = "4.1"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue