Skip to content

Commit 5220a41

Browse files
Merge pull request #248 from JuliaDiffEq/ChrisRackauckas-patch-1
Change unicode divider in subscripts
2 parents 800bbfa + af49936 commit 5220a41

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)