Skip to content

Commit

Permalink
TOML template: Uses actual number syntax for numbers [fix]
Browse files Browse the repository at this point in the history
  • Loading branch information
hoijui committed Jan 6, 2025
1 parent d8ba92a commit b942191
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions res/sample_data/okh-TEMPLATE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ mass= 50330.0

[outer-dimensions]
# Any dimension value always has to be in [mm] (millimeters)
width = "400"
depth = "350"
height = "150"
width = 400
depth = 350.8
height = 150

[[part]]
name = "your-awesome-part"
Expand All @@ -80,9 +80,9 @@ export = [
mass = 330.0

[part.outer-dimensions]
width = "120"
depth = "100"
height = "3"
width = 120
depth = 100
height = 3.5

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

0 comments on commit b942191

Please sign in to comment.