summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2021-08-15 11:18:32 -0400
committerAllen Winter <allen.winter@kdab.com>2021-08-15 11:18:53 -0400
commit1a841e6bdd6078a4578c6051a00a9baaeee3394f (patch)
tree02e55c35a4f075a7ee0bbdae4cc39c56dabf64ea
parentb09809ebf962d83ca52703a4c51f1db36927a1fd (diff)
downloadlibical-git-1a841e6bdd6078a4578c6051a00a9baaeee3394f.tar.gz
various - fix a few more misspellings
-rw-r--r--CMakeLists.txt2
-rwxr-xr-xsrc/Net-ICal-Libical/test/libical.pl4
-rw-r--r--src/java/jlibical_utils_cxx.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5749bdbf..2179258b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -281,7 +281,7 @@ endif()
# Use GNUInstallDirs
include(GNUInstallDirs)
-set(BIN_INSTALL_DIR ${CMAKE_INSTALL_BINDIR} CACHE STRING "User exectuables directory name" FORCE)
+set(BIN_INSTALL_DIR ${CMAKE_INSTALL_BINDIR} CACHE STRING "User executables directory name" FORCE)
set(LIB_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR} CACHE STRING "Library directory name" FORCE)
set(INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_INCLUDEDIR} CACHE STRING "Include directory name" FORCE)
set(SHARE_INSTALL_DIR ${CMAKE_INSTALL_DATAROOTDIR} CACHE STRING "Share directory name")
diff --git a/src/Net-ICal-Libical/test/libical.pl b/src/Net-ICal-Libical/test/libical.pl
index 702258db..74586c48 100755
--- a/src/Net-ICal-Libical/test/libical.pl
+++ b/src/Net-ICal-Libical/test/libical.pl
@@ -52,7 +52,7 @@ ORGANIZER:mailto:a\@example.com
DTSTAMP:19970612T190000Z
DTSTART:19970701T210000Z
DTEND:19970701T230000Z
-SEQENCE:1
+SEQUENCE:1
UID:0981234-1234234-23\@example.com
SUMMARY:ST. PAUL SAINTS -VS- DULUTH-SUPERIOR DUKES
END:VEVENT
@@ -80,7 +80,7 @@ foreach $i (@occur){
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime($i);
printf("%s %s %2d %02d:%02d:%02d %d\n",
- (Sun,Mon,Tue,Wed,Thur,Fri,Sat)[$wday],
+ (Sun,Mon,Tue,Wed,Thu,Fri,Sat)[$wday],
(Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec)[$mon],
$mday,
$hour,$min,$sec,
diff --git a/src/java/jlibical_utils_cxx.cpp b/src/java/jlibical_utils_cxx.cpp
index 0a3ee35a..d89ee862 100644
--- a/src/java/jlibical_utils_cxx.cpp
+++ b/src/java/jlibical_utils_cxx.cpp
@@ -399,7 +399,7 @@ jobject createNewICalPeriodType(JNIEnv *env, icalperiodtype* source)
}
//-------------------------------------------------------
-// Creat a new surrogate of the given type for the given subject.
+// Create a new surrogate of the given type for the given subject.
//-------------------------------------------------------
jobject doCreateNewSurrogate(JNIEnv *env, jclass surrogateClass, jlong subject)
{