summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-06-27 10:11:49 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-06-27 10:11:49 +0000
commit478b46be87e8a119d75f23167c1fecb2d5a02f6b (patch)
treea512c13aa9efc5ea657eda153257895be0fe942b /src
parent155afdf9b76e37f4daed6d7d48dfd9e56844964f (diff)
typos in the documentation for the Python binding
Diffstat (limited to 'src')
-rw-r--r--src/runtime/python/pypgf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/python/pypgf.c b/src/runtime/python/pypgf.c
index 916429923..a327b8e77 100644
--- a/src/runtime/python/pypgf.c
+++ b/src/runtime/python/pypgf.c
@@ -160,11 +160,11 @@ static PyMethodDef Expr_methods[] = {
static PyGetSetDef Expr_getseters[] = {
{"fun",
NULL, NULL,
- "this the function in a function application",
+ "this is the function in a function application",
NULL},
{"arg",
NULL, NULL,
- "this the argument in a function application",
+ "this is the argument in a function application",
NULL},
{"val",
NULL, NULL,
@@ -2211,7 +2211,7 @@ pgf_readType(PyObject *self, PyObject *args) {
static PyMethodDef module_methods[] = {
{"readPGF", (void*)pgf_readPGF, METH_VARARGS,
- "Reads a PGF file in the memory"},
+ "Reads a PGF file in memory"},
{"readExpr", (void*)pgf_readExpr, METH_VARARGS,
"Parses a string as an abstract tree"},
{"readType", (void*)pgf_readType, METH_VARARGS,