summaryrefslogtreecommitdiff
path: root/src/pyinterp.cc
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2022-07-19 14:30:07 +0200
committerMartin Michlmayr <tbm@cyrius.com>2022-07-19 22:44:20 +0800
commitfcacef5af9e52204926480fbdeb9a238ecab31d1 (patch)
tree51d1d44e54edd49b6c9cb2db23e57681da7089f1 /src/pyinterp.cc
parent4898e57bdd247f1f2a18ca1217a89e7f1105caae (diff)
downloadfork-ledger-fcacef5af9e52204926480fbdeb9a238ecab31d1.tar.gz
fork-ledger-fcacef5af9e52204926480fbdeb9a238ecab31d1.tar.bz2
fork-ledger-fcacef5af9e52204926480fbdeb9a238ecab31d1.zip
Fix typos found by codespell
Diffstat (limited to 'src/pyinterp.cc')
-rw-r--r--src/pyinterp.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pyinterp.cc b/src/pyinterp.cc
index 2c549890..ed94de84 100644
--- a/src/pyinterp.cc
+++ b/src/pyinterp.cc
@@ -93,14 +93,14 @@ struct python_run
{
object result;
- python_run(python_interpreter_t * intepreter,
+ python_run(python_interpreter_t * interpreter,
const string& str, int input_mode)
: result
(handle<>
(borrowed
(PyRun_String(str.c_str(), input_mode,
- intepreter->main_module->module_globals.ptr(),
- intepreter->main_module->module_globals.ptr())))) {}
+ interpreter->main_module->module_globals.ptr(),
+ interpreter->main_module->module_globals.ptr())))) {}
operator object() {
return result;
}