Skip to content

Commit 81b34d7

Browse files
TorkelEisaacsas
andcommitted
Update docs/src/introduction_to_catalyst/catalyst_for_new_julia_users.md
Co-authored-by: Sam Isaacson <[email protected]>
1 parent 2b2f099 commit 81b34d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/introduction_to_catalyst/catalyst_for_new_julia_users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Catalyst models are created through the `@reaction_network` *macro*. For more in
129129

130130
The `@reaction_network` command is followed by the `begin` keyword, which is followed by one line for each *reaction* of the model. Each reaction consists of a *reaction rate*, followed by the reaction itself. The reaction contains a set of *substrates* and a set of *products* (what is consumed and produced by the reaction, respectively). These are separated by a `-->` arrow. Finally, the model ends with the `end` keyword.
131131

132-
Here, we create a simple *birth-death* model, where a single species (*X*) is created at rate *b*, and degraded at rate *d*. The model is stored in the variable `rn`.
132+
Here, we create a simple *birth-death* model, where a single species ($X$) is created at rate $b$, and degraded at rate $d$. The model is stored in the variable `rn`.
133133
```@example ex2
134134
rn = @reaction_network begin
135135
b, 0 --> X

0 commit comments

Comments
 (0)