diff options
Diffstat (limited to 'src/mp-equation.c')
-rw-r--r-- | src/mp-equation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mp-equation.c b/src/mp-equation.c index c50646e..4778298 100644 --- a/src/mp-equation.c +++ b/src/mp-equation.c @@ -66,7 +66,7 @@ get_variable(ParserState *state, const char *name, MPNumber *z) else if (strcmp(name, "mₚ") == 0) mp_set_from_string("0.000000000000000000000000001672621898", 10, z); /* proton mass */ else if (strcmp(name, "Nₐ") == 0) - mp_set_from_string("602214086000000000000000", 10, z); /* Avogrado constant */ + mp_set_from_string("602214086000000000000000", 10, z); /* Avogadro constant */ else if (state->options->get_variable) result = state->options->get_variable(name, z, state->options->callback_data); else |