Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkdp authored and David Peter committed Oct 11, 2023
1 parent 5ef422e commit 21b8c86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion book/src/example-acidity.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# https://en.wikipedia.org/wiki/PH
fn pH_acidity(activity_hplus: MolarConcentration) -> Scalar =
fn pH_acidity(activity_hplus: Molarity) -> Scalar =
- log10(activity_hplus / (mol / L))
print(pH_acidity(5e-6 mol / L))
Expand Down
2 changes: 1 addition & 1 deletion examples/acidity.nbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# https://en.wikipedia.org/wiki/PH

fn pH_acidity(activity_hplus: MolarConcentration) -> Scalar =
fn pH_acidity(activity_hplus: Molarity) -> Scalar =
- log10(activity_hplus / (mol / L))

print(pH_acidity(5e-6 mol / L))
Expand Down

0 comments on commit 21b8c86

Please sign in to comment.