aboutsummaryrefslogtreecommitdiffstats
path: root/lang
diff options
context:
space:
mode:
Diffstat (limited to 'lang')
-rw-r--r--lang/cpp/README2
-rw-r--r--lang/cpp/src/swdbresult.h2
-rwxr-xr-xlang/python/examples/exportimport.py2
-rw-r--r--lang/qt/README4
4 files changed, 5 insertions, 5 deletions
diff --git a/lang/cpp/README b/lang/cpp/README
index b9a48da1..e142e371 100644
--- a/lang/cpp/README
+++ b/lang/cpp/README
@@ -62,7 +62,7 @@ Example to set the ownertrust of a key:
Data data;
/* Start the edit on some key previously obtained. */
Error e = ctx->edit(key, std::unique_ptr<EditInteractor>(ei), data);
- /* Errors provide boolean comparision */
+ /* Errors provide boolean comparison */
if (!e)
...
/* Delete the context */
diff --git a/lang/cpp/src/swdbresult.h b/lang/cpp/src/swdbresult.h
index 2e0bf2d5..d13b57c8 100644
--- a/lang/cpp/src/swdbresult.h
+++ b/lang/cpp/src/swdbresult.h
@@ -87,7 +87,7 @@ public:
/* The time the online info was retrieved. */
unsigned long retrieved() const;
- /* This bit is set if an error occured or some of the information
+ /* This bit is set if an error occurred or some of the information
* in this structure may not be set. */
bool warning() const;
diff --git a/lang/python/examples/exportimport.py b/lang/python/examples/exportimport.py
index 8ae87a8c..d84a01c3 100755
--- a/lang/python/examples/exportimport.py
+++ b/lang/python/examples/exportimport.py
@@ -45,7 +45,7 @@ with gpg.Context(armor=True) as c, gpg.Data() as expkey:
# of them.
with gpg.Context() as c:
# Note: We must not modify the key store during iteration,
- # therfore, we explicitly make a list.
+ # therefore, we explicitly make a list.
keys = list(c.keylist(user))
for k in keys:
diff --git a/lang/qt/README b/lang/qt/README
index 6360a5be..4621d28c 100644
--- a/lang/qt/README
+++ b/lang/qt/README
@@ -38,7 +38,7 @@ with QObject::deleteLater so they can be started without
result handlers.
The result signal provides a tuple of objects with the
-appropiate result information for this job. For historic
+appropriate result information for this job. For historic
reasons each result signal also includes an AuditLog
and an AuditLog Error. These are only useful for
S/MIME signature validation but are part of other jobs
@@ -72,7 +72,7 @@ Async usage:
job->start(keys, inptr, outptr, Context::AlwaysTrust);
/* Do not delete the job as it is autodeleted. */
-Syncronus usage:
+Synchronous usage:
/* Create a job */
KeyListJob *listjob = openpgp()->keyListJob(false, false, false);