summaryrefslogtreecommitdiff
path: root/src/mp-equation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mp-equation.c')
-rw-r--r--src/mp-equation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mp-equation.c b/src/mp-equation.c
index 112078d..c50646e 100644
--- a/src/mp-equation.c
+++ b/src/mp-equation.c
@@ -1,7 +1,7 @@
/*
* Copyright (C) 2004-2008 Sami Pietila
* Copyright (C) 2008-2011 Robert Ancell.
- *
+ *
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
@@ -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); /* Avogrado constant */
else if (state->options->get_variable)
result = state->options->get_variable(name, z, state->options->callback_data);
else