summaryrefslogtreecommitdiff
path: root/src/libicalvcal
diff options
context:
space:
mode:
Diffstat (limited to 'src/libicalvcal')
-rw-r--r--src/libicalvcal/README.TXT12
-rw-r--r--src/libicalvcal/icalvcal.c2
-rw-r--r--src/libicalvcal/vcc.c4
-rw-r--r--src/libicalvcal/vcc.y4
4 files changed, 11 insertions, 11 deletions
diff --git a/src/libicalvcal/README.TXT b/src/libicalvcal/README.TXT
index aeaa18fc..35e1f9b3 100644
--- a/src/libicalvcal/README.TXT
+++ b/src/libicalvcal/README.TXT
@@ -396,8 +396,8 @@ b. vobject.h -- contains basic interfaces to the VObject APIs.
c. values of a property is determined by the property definition
itself. The vobject APIs does not attempt to enforce
- any of such definition. It is the consumer responsibility
- to know what value is expected from a property. e.g
+ any of such definition. It is the consumer's responsibility
+ to know what value is expected from a property. E.g.
most properties have unicode string value, so to access
the value of these type of properties, you will use
the vObjectUStringZValue() to read the value and
@@ -405,7 +405,7 @@ c. values of a property is determined by the property definition
Refer to the VCard and VCalendar specifications for
the definition of each property.
-d. properties name (id) are case incensitive.
+d. properties name (id) are case insensitive.
8. Brief descriptions of each APIs
===============================
@@ -565,7 +565,7 @@ d. properties name (id) are case incensitive.
write it to memory. If s is 0, then memory required
to hold the textual representation will be allocated
by this API. If a variable len is passed, len will
- be overwriten with the byte size of the textual
+ be overwritten with the byte size of the textual
representation. If s is non-zero, then s has to
be a user allocated buffer whose size has be passed
in len as a variable. Memory allocated by the API
@@ -663,7 +663,7 @@ of Example.vcf and its VObject Representation
initPropIterator(&t,vcard);
while (moreIteration(&t)) {
VObject *eachProp = nextVObject(&t);
- // The primarly purpose of this example is to
+ // The primary purpose of this example is to
// show how to iterate through a VCard VObject,
// it is not meant to be efficient at all.
char *n = vObjectName(eachProp);
@@ -686,7 +686,7 @@ of Example.vcf and its VObject Representation
initPropIterator(&t,vcard);
while (moreIteration(&t)) {
VObject *eachProp = nextVObject(&t);
- // The primarly purpose of this example is to
+ // The primary purpose of this example is to
// show how to iterate through a VCalendar VObject,
// it is not meant to be efficient at all.
char *n = vObjectName(eachProp);
diff --git a/src/libicalvcal/icalvcal.c b/src/libicalvcal/icalvcal.c
index 1c330187..a4389603 100644
--- a/src/libicalvcal/icalvcal.c
+++ b/src/libicalvcal/icalvcal.c
@@ -1258,7 +1258,7 @@ static void *rule_prop(int icaltype, VObject *object, icalcomponent *comp,
return (void *)prop;
}
-/* directly convertable property. The string representation of vcal is
+/* directly convertible property. The string representation of vcal is
the same as ical */
void *dc_prop(int icaltype, VObject *object, icalcomponent *comp, icalvcal_defaults *defaults)
diff --git a/src/libicalvcal/vcc.c b/src/libicalvcal/vcc.c
index ede0eedf..6fe0a55e 100644
--- a/src/libicalvcal/vcc.c
+++ b/src/libicalvcal/vcc.c
@@ -880,7 +880,7 @@ static char* lexLookaheadWord() {
#ifdef _SUPPORT_LINE_FOLDING
static void handleMoreRFC822LineBreak(int c) {
- /* suport RFC 822 line break in cases like
+ /* support RFC 822 line break in cases like
* ADR: foo;
* morefoo;
* more foo;
@@ -1275,7 +1275,7 @@ int yylex() {
}
}
else {
- /* unknow token */
+ /* unknown token */
return 0;
}
break;
diff --git a/src/libicalvcal/vcc.y b/src/libicalvcal/vcc.y
index e2078a3b..97c50ec7 100644
--- a/src/libicalvcal/vcc.y
+++ b/src/libicalvcal/vcc.y
@@ -708,7 +708,7 @@ static char* lexLookaheadWord() {
#ifdef _SUPPORT_LINE_FOLDING
static void handleMoreRFC822LineBreak(int c) {
- /* suport RFC 822 line break in cases like
+ /* support RFC 822 line break in cases like
* ADR: foo;
* morefoo;
* more foo;
@@ -1103,7 +1103,7 @@ int yylex() {
}
}
else {
- /* unknow token */
+ /* unknown token */
return 0;
}
break;