Skip to content

Commit

Permalink
Add basic docs and fixup docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
LilithHafner committed Mar 20, 2024
1 parent 172c4b3 commit 8983dad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ makedocs(
"manual/sparsity_detection.md",
"manual/types.md",
"manual/faq.md"
"manual/limits.md"
],
"Comparison Against SymPy" => "comparison.md",
]
Expand Down
8 changes: 8 additions & 0 deletions docs/src/manual/limits.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Symbolic Limits

Experimental symbolic limit support is provided by the [`limit`](@ref) function, documented
below.

```@docs
limit
```
2 changes: 1 addition & 1 deletion src/limits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ thrown. Side defaults to `:both` for finite `h`, `:left` for `h = Inf`, and `:ri
`expr` must be compoesed of `log`, `exp`, constants, and the rational opperators `+`, `-`,
`*`, and `/`. This limitation may eventually be relaxed.
!!! Warning
!!! warning
Because symbolic limit computation is undecidable, this function necessarily employs
heuristics and may occasionally return wrong answers. Nevertheless, please report wrong
answers as issues as we aim to have heuristics that produce correct answers in all
Expand Down

0 comments on commit 8983dad

Please sign in to comment.