Skip to content

Commit af49936

Browse files
Change unicode divider in subscripts
Better way of doing https://github.com/JuliaDiffEq/ModelingToolkit.jl/issues/247 thanks to @ilarioc
1 parent 800bbfa commit af49936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/variables.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct Variable <: Function
3535
Variable(name; known = false) = new(name, known)
3636
end
3737
function Variable(name, indices...; known = false)
38-
var_name = Symbol("$(name)$(join(map_subscripts.(indices), "̒"))")
38+
var_name = Symbol("$(name)$(join(map_subscripts.(indices), "ˏ"))")
3939
Variable(var_name; known=known)
4040
end
4141

0 commit comments

Comments
 (0)