Skip to content

Commit 9d62c28

Browse files
committed
docstring fix
1 parent 78ca087 commit 9d62c28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/dsl.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ function read_events_option(options, event_type::Symbol)
688688
return events_expr
689689
end
690690

691-
# Reads the variables options. Outputs a list of teh variables inferred from the equations,
691+
# Reads the variables options. Outputs a list of the variables inferred from the equations,
692692
# as well as the equation vector. If the default differential was used, updates the `diffsexpr`
693693
# expression so that this declares this as well.
694694
function read_equations_options!(diffsexpr, options, syms_unavailable, tiv; requiredec = false)
@@ -876,7 +876,7 @@ The `@reaction` macro is followed by a single line consisting of three parts:
876876
- Any number of substrates (which are consumed by the reaction).
877877
- Any number of products (which are produced by the reaction).
878878
879-
The output is a reaction (just like created using teh `Reaction` constructor).
879+
The output is a reaction (just like created using the `Reaction` constructor).
880880
881881
Examples:
882882
Here we create a simple binding reaction and stores it in the variable rx:
@@ -907,7 +907,7 @@ t = default_t()
907907
@parameters k b
908908
@species A(t)
909909
ex = k*A^2 + t
910-
rx = @reaction b*$ex*$A, $A --> C
910+
rx = @reaction b*\$ex*\$A, \$A --> C
911911
```
912912
913913
Notes:

0 commit comments

Comments
 (0)