Weave.jl
Weave.jl copied to clipboard
Repeated letter bug when 'term=true'
```julia; term=true
using Statistics
```
produces output
julia> using Statisticss
Note the final 's' is duplicated.
```julia
using Statistics
```
doesn't have this problem.