Skip to content

Commit 9b0125b

Browse files
committed
bugfix
1 parent 3b7a143 commit 9b0125b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# LegendrePolynomials.jl
22

3-
[![Build Status](https://travis-ci.com/jishnub/LegendrePolynomials.jl.svg?branch=master)](https://travis-ci.com/jishnub/LegendrePolynomials.jl)
3+
![CI](https://github.com/jishnub/LegendrePolynomials.jl/workflows/CI/badge.svg?branch=master)
4+
[![stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://jishnub.github.io/LegendrePolynomials.jl/stable)
5+
[![dev](https://img.shields.io/badge/docs-latest-blue.svg)](https://jishnub.github.io/LegendrePolynomials.jl/dev)
46

57
Legendre polynomials and their derivatives using automatic differentiation
68

src/LegendrePolynomials.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ end
2727

2828
function Pl_hyperdual_allmodes(x::Real, lmax::Integer)
2929
T = typeof(float(x))
30-
arr = `OffsetArray`{Hyper{T}}(undef,0:lmax)
30+
arr = OffsetArray{Hyper{T}}(undef, 0:lmax)
3131
Pl_hyperdual_allmodes!(arr,x,lmax)
3232
return arr
3333
end

0 commit comments

Comments
 (0)