We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b02a2fd commit 9d1347bCopy full SHA for 9d1347b
src/cformat.jl
@@ -258,7 +258,7 @@ function format( x::T;
258
dpos === nothing && (dpos = length(s))
259
if actualconv[1] in "eEs"
260
epos = Compat.findfirst(isequal(actualconv[1] == 'E' ? 'E' : 'e'), s)
261
- rpos = epos === nothing ? length( s ) : epos-1
+ rpos = (epos === nothing) ? length( s ) : (epos-1)
262
else
263
rpos = length(s)
264
end
0 commit comments