Skip to content

Commit

Permalink
Merge pull request #1173 from vaerksted/master
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
bowenszhu committed Jun 21, 2024
2 parents 6cf9430 + 4f5a269 commit 17ae756
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ z = g(x) + g(y)

One of the benefits of a one-language Julia symbolic stack is that the
primitives are all written in Julia, and therefore it's trivially
extendible from Julia itself. By default, new functions are traced
extendable from Julia itself. By default, new functions are traced
to the primitives and the symbolic expressions are written on the
primitives. However, we can expand the allowed primitives by registering
new functions. For example, let's register a new function `h`:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/manual/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ In some circumstances you may need to use the direct API in order to define
registration on functions or types without using the macro. This is done
by directly defining dispatches on symbolic objects.

A good exmample of this is DataInterpolations.jl's interpolations object.
A good example of this is DataInterpolations.jl's interpolations object.
On an interpolation by a symbolic variable, we generate the symbolic
function (the `term`) for the interpolation function. This looks like:

Expand Down
2 changes: 1 addition & 1 deletion src/limits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Compute the limit of `expr` as `var` approaches `h`.
thrown. Side defaults to `:both` for finite `h`, `:left` for `h = Inf`, and `:right` for
`h = -Inf`.
`expr` must be compoesed of `log`, `exp`, constants, and the rational opperators `+`, `-`,
`expr` must be composed of `log`, `exp`, constants, and the rational operators `+`, `-`,
`*`, and `/`. This limitation may eventually be relaxed.
!!! warning
Expand Down

0 comments on commit 17ae756

Please sign in to comment.