Skip to content

Commit

Permalink
Rebase doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
stillyslalom committed Jun 25, 2021
1 parent f1ca8d2 commit 8081144
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/PyThermo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ julia> He.T = 30u"K"
30 K
julia> density(He)
1.623503007493497 kg m^-3
1.6235030074934973 kg m^-3
```
A wide variety of unexported properties can be accessed from the underlying Python object:
Expand Down Expand Up @@ -122,7 +122,7 @@ julia> air = Mixture(["N2" => 0.78, "O2" => 0.21, "Ar" => 0.01])
Mixture({N2: 0.78, O2: 0.21, Ar: 0.01}, 298.1 K, 1.013e+05 Pa)
julia> soundspeed(air)
346.14659461295173 m s^-1
346.1466532754559 m s^-1
```
"""
struct Mixture <: Chemical
Expand All @@ -142,7 +142,7 @@ end

function composition_string(mix)
species_str = try
mix.components
mix.IDs
catch
mix.names
end
Expand Down

2 comments on commit 8081144

@stillyslalom
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/39595

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.2 -m "<description of version>" 8081144b911f8bd83bdf82b36e6ac10a25687167
git push origin v0.1.2

Please sign in to comment.