diff python/python-libpst.cpp @ 390:5c0ce43c7532

Fix a number of spelling mistakes Changes-by: codespell -w Suggested-by: codespell, spellintian, lintian I: libpst4: spelling-error-in-binary usr/lib/x86_64-linux-gnu/libpst.so.4.1.14 occured occurred I: libpst-dev: spelling-error-in-manpage usr/share/man/man5/outlook.pst.5.gz Attachement Attachment
author Paul Wise <pabs3@bonedaddy.net>
date Sat, 21 Dec 2019 21:25:45 +0800
parents 26c48ea9d896
children
line wrap: on
line diff
--- a/python/python-libpst.cpp	Sat Dec 21 21:25:45 2019 +0800
+++ b/python/python-libpst.cpp	Sat Dec 21 21:25:45 2019 +0800
@@ -19,7 +19,7 @@
 using namespace boost::python;
 
 
-/** python version of pst_binary, where python is
+/** Python version of pst_binary, where Python is
     responsible for freeing the underlying buffer */
 struct ppst_binary : public pst_binary
 {
@@ -47,9 +47,9 @@
     pst_recurrence* pst_convert_recurrence(pst_item_appointment *appt);
     void            pst_free_recurrence(pst_recurrence* r);
 
-    /** helper for python access to fopen() */
+    /** helper for Python access to fopen() */
     FILE*          ppst_open_file(string filename, string mode);
-    /** helper for python access to fclose() */
+    /** helper for Python access to fclose() */
     int            ppst_close_file(FILE* fp);
 
 private: