Skip to content

Commit

Permalink
Merge pull request #184 from devmotion/dw/admonition
Browse files Browse the repository at this point in the history
Fix admonitions
  • Loading branch information
kalmarek authored Apr 17, 2024
2 parents 2fcfa67 + 579cb32 commit 1a1ab9f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
10 changes: 6 additions & 4 deletions src/calc_integrate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,8 @@ will be given a keyword argument `analytic::Bool`, if `analytic` is
`true` then the output has to be non-finite (typically `Acb(NaN)`) if
`f` is not holomorphic on the whole input ball.
!!! Note: It's users responsibility to verify holomorphicity of `f`.
!!! note
Users are responsible for verifying holomorphicity of `f`.
Parameters:
* `take_prec` if true then `f` will be given the keyword argument
Expand All @@ -289,9 +290,10 @@ Parameters:
* `opts` a `C_NULL` (using the default options), or an instance of
`acb_calc_integrate_opt_struct` controlling the algorithmic aspects of integration.
!!! Note: `integrate` does not guarantee to satisfy provided
tolerances. But the result is guaranteed to be contained in the
resulting ball.
!!! note
`integrate` does not guarantee to satisfy provided
tolerances. But the integration result is guaranteed to be contained
in the returned ball.
For more information please consider arblib documentation and the
paper
Expand Down
5 changes: 3 additions & 2 deletions src/poly.jl
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,10 @@ Similar to `p[i]` but instead of an `Arb` or `Acb` returns an `ArbRef`
or `AcbRef` which shares the memory with the `i`-th coefficient of
`p`.
!!! Note: For reading coefficients this is always safe, but if the
!!! note
Using `ref` for reading coefficients is always safe, but if the
coefficient is mutated then care has to be taken. See the comment
further down for how to handle this.
further down for how to handle mutation.
It only allows accessing coefficients that are allocated. For
`ArbPoly` and `AcbPoly` this is typically all coefficients up to the
Expand Down

0 comments on commit 1a1ab9f

Please sign in to comment.