Skip to content

Commit

Permalink
Fix docstring typo in Reaction class reaction.pyx
Browse files Browse the repository at this point in the history
  • Loading branch information
cdeil authored and bryanwweber committed Jun 16, 2022
1 parent 8f4c212 commit a402687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/reaction.pyx
Expand Up @@ -1008,7 +1008,7 @@ cdef class Reaction:
R = ct.Reaction({"O": 1, "H2": 1}, {"H": 1, "OH": 1},
ct.ArrheniusRate(38.7, 2.7, 26191840.0))
R = ct.Reaction(equation="O + H2 <=> H + OH",
rate={"A": 38.7, "b", 2.7, "Ea": 26191840.0})
rate={"A": 38.7, "b": 2.7, "Ea": 26191840.0})
R = ct.Reaction(equation="HO2 <=> OH + O", rate=ChebyshevRate(...))
The static method `list_from_file` can be used to create a list of `Reaction`
Expand Down

0 comments on commit a402687

Please sign in to comment.