aboutsummaryrefslogtreecommitdiffstats
path: root/pressure.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-01-20 18:01:28 -0500
committerSam Anthony <sam@samanthony.xyz>2024-01-20 18:01:28 -0500
commit3c7c084774d355d9f1e5b176d0e4e4f88e02fe45 (patch)
tree1c6610dc53aa57c71e32158c6610b806497f67c7 /pressure.go
parent3aaae870ba76d8f0907b10a61d829ad353936306 (diff)
downloadvolute-3c7c084774d355d9f1e5b176d0e4e4f88e02fe45.zip
fix typo in AbsolutePressure()
Diffstat (limited to 'pressure.go')
-rw-r--r--pressure.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pressure.go b/pressure.go
index cd824c5..631fd97 100644
--- a/pressure.go
+++ b/pressure.go
@@ -36,5 +36,5 @@ func ParsePressureUnit(s string) (Pressure, error) {
}
func AtmosphericPressure() Pressure {
- return 101.325 * Pascal
+ return 101_325 * Pascal
}