Skip to content

Commit b942191

Browse files
committed
TOML template: Uses actual number syntax for numbers [fix]
1 parent d8ba92a commit b942191

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

res/sample_data/okh-TEMPLATE.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ mass= 50330.0
6464

6565
[outer-dimensions]
6666
# Any dimension value always has to be in [mm] (millimeters)
67-
width = "400"
68-
depth = "350"
69-
height = "150"
67+
width = 400
68+
depth = 350.8
69+
height = 150
7070

7171
[[part]]
7272
name = "your-awesome-part"
@@ -80,9 +80,9 @@ export = [
8080
mass = 330.0
8181

8282
[part.outer-dimensions]
83-
width = "120"
84-
depth = "100"
85-
height = "3"
83+
width = 120
84+
depth = 100
85+
height = 3.5
8686

8787
[[software]]
8888
release = "https://github.com/arduino/ArduinoCore-mbed/releases/tag/1.3.2"

0 commit comments

Comments
 (0)