diff options
author | David Snopek <dsnopek@gmail.com> | 2023-08-31 08:17:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 08:17:51 -0500 |
commit | 9ada7065d64bff3d1b87f4e0de1a52d88959731e (patch) | |
tree | afa619c7483295fbb5d8a34f45d5229cef2efe86 | |
parent | 9a6c741d5de0c6d376174db94c0037c991d9e372 (diff) | |
parent | b3596a18e19ac7eadf6c8622ec89e031b9afad72 (diff) | |
download | redot-cpp-9ada7065d64bff3d1b87f4e0de1a52d88959731e.tar.gz |
Merge pull request #1226 from AThousandShips/version_str
Fix formatting of `compatibility_minimum` examples
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | test/project/example.gdextension | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -87,7 +87,7 @@ See [example.gdextension](test/project/example.gdextension) used in the test pro [configuration] entry_symbol = "example_library_init" -compatibility_minimum = 4.1 +compatibility_minimum = "4.1" [libraries] diff --git a/test/project/example.gdextension b/test/project/example.gdextension index 90fd53a..99c1746 100644 --- a/test/project/example.gdextension +++ b/test/project/example.gdextension @@ -1,7 +1,7 @@ [configuration] entry_symbol = "example_library_init" -compatibility_minimum = 4.1 +compatibility_minimum = "4.1" [libraries] |