JuliaPy / JuliaPy/PyPlot.jl

Typo in /home/$USER/.julia/packages/Plots/$HASH/src/utils.jl:829

未关闭
#514 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
Julia
星标
488
派生
90
PR 合并指标
30 天内没有已合并 PR

描述

```
extend_to_length!(v::AbstractRange, n) = range(first(v), step = step(v), length = n)
function extend_to_length!(v::AbstractVector, n)
vmax = isempy(v) ? 0 : ignorenan_maximum(v)
extend_by_data!(v, vmax .+ (1:(n - length(v))))
end
extend_by_data!(v::AbstractVector, x) = isimmutable(v) ? vcat(v, x) : push!(v, x)
function extend_by_data!(v::AbstractVector, x::AbstractVector)
isimmutable(v) ? vcat(v, x) : append!(v, x)
end
```

It seems that "isempy" should be "isempty"

贡献指南

这个仓库没有索引到贡献指南

调研方向

Open /home/$USER/.julia/packages/Plots/$HASH/src/utils.jl around line 829 and verify the reported spelling in extend_to_length!. Check whether this cached Plots package source corresponds to a tracked project file; done means the typo is corrected in the appropriate source and the relevant Julia tests pass.

由索引模型根据 Issue 内容生成。

评估

技术栈
julia
领域
data-visualization
Issue 类型
缺陷
难度
1/5
预计耗时
1 小时以内
活跃度
停滞
描述清晰度
描述清楚
新手友好度
35/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。