Skip to content

Commit be561b7

Browse files
committed
Fix spacing
1 parent d9ea0eb commit be561b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/juliac/abi_export.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function emit_struct_info!(ctx::TypeEmitter, @nospecialize(dt::DataType); indent
9797
let indented_println(args...) = println(ctx.io, " " ^ indent, args...)
9898
indented_println("{")
9999
indented_println(" \"id\": ", type_id, ",")
100-
indented_println(ismutabletype(dt) ?(" \"kind\": \"mutable struct\",") : " \"kind\": \"struct\",")
100+
indented_println(ismutabletype(dt) ? " \"kind\": \"mutable struct\"," : " \"kind\": \"struct\",")
101101
indented_println(" \"name\": ", type_name_json(dt), ",")
102102
indented_println(" \"size\": ", Core.sizeof(dt), ",")
103103
indented_println(" \"alignment\": ", Base.datatype_alignment(dt), ",")

0 commit comments

Comments
 (0)