diff options
author | willemferguson <willemferguson@zoology.up.ac.za> | 2019-06-07 09:36:15 +0200 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2019-06-07 09:42:39 +0200 |
commit | 58985cd8aee2015d4b182108a062357d6e256158 (patch) | |
tree | ec928867af922c9ae84110a69a75bcdc95f24a16 /core/profile.c | |
parent | 4a8ae2a090a68759ada5d6e30b006b275904957d (diff) | |
download | subsurface-58985cd8aee2015d4b182108a062357d6e256158.tar.gz |
Correct typo in Information box
Correct type in SCR delta pO2 display in Information box
Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za>
Diffstat (limited to 'core/profile.c')
-rw-r--r-- | core/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/profile.c b/core/profile.c index 61277b6be..092bfdd7c 100644 --- a/core/profile.c +++ b/core/profile.c @@ -1420,7 +1420,7 @@ static void plot_string(struct plot_info *pi, struct plot_data *entry, struct me if (prefs.pp_graphs.po2 && entry->pressures.o2 > 0) { put_format_loc(b, translate("gettextFromC", "pO₂: %.2fbar\n"), entry->pressures.o2); if (entry->scr_OC_pO2.mbar) - put_format_loc(b, translate("gettextFromC", "SCR ΔpO2: %.2fbar\n"), entry->scr_OC_pO2.mbar/1000.0 - entry->pressures.o2); + put_format_loc(b, translate("gettextFromC", "SCR ΔpO₂: %.2fbar\n"), entry->scr_OC_pO2.mbar/1000.0 - entry->pressures.o2); } if (prefs.pp_graphs.pn2 && entry->pressures.n2 > 0) put_format_loc(b, translate("gettextFromC", "pN₂: %.2fbar\n"), entry->pressures.n2); |