Skip to content

Commit

Permalink
updated expected ternary formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mkatychev committed Jan 22, 2025
1 parent e5324bc commit dae66d9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions topiary-cli/tests/samples/expected/openscad.scad
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,11 @@ function affine3d_rot_from_to(from, to) =
];

// Prettier style ternaries https://prettier.io/blog/2023/11/13/curious-ternaries
x = foo() ? bar()
: baz() ?
qux()
: true;
x =
foo() ? bar()
: baz() ?
qux()
: true;

// ================================================================================
// Comprehensions
Expand Down

0 comments on commit dae66d9

Please sign in to comment.