git » libjio » commit d175029

I obviously can't spell =) Even though I looked it up in the dictionary before writing it down, I still misspelled "journaling" and put a double L. This patch fixes it.

author Alberto Bertogli
2004-03-31 01:58:40 UTC
committer Alberto Bertogli
2007-07-15 12:30:17 UTC
parent 7a6c2a058d43fdf5fb6f3b858c15848cf7940ccd

I obviously can't spell =) Even though I looked it up in the dictionary before writing it down, I still misspelled "journaling" and put a double L. This patch fixes it.

I obviously can't spell =)
Even though I looked it up in the dictionary before writing it down, I still
misspelled "journaling" and put a double L. This patch fixes it.

doc/libjio.3 +2 -2
doc/libjio.lyx +4 -4
libjio.c +1 -1
libjio.h +1 -1

diff --git a/doc/libjio.3 b/doc/libjio.3
index b8815f8..8439f6d 100644
--- a/doc/libjio.3
+++ b/doc/libjio.3
@@ -1,6 +1,6 @@
 .TH libjio 3 "21/Feb/2004"
 .SH NAME
-libjio - A library for Journalled I/O
+libjio - A library for Journaled I/O
 
 .SH FUNCTIONS
 
@@ -86,7 +86,7 @@ struct jfsck_result
 
 .SH DESCRIPTION
 
-libjio is a library to do transaction-oriented journalled I/O. This manpage
+libjio is a library to do transaction-oriented journaled I/O. This manpage
 describes it's C API very briefly, further information can be found in the
 documentation that comes along with the library itself, or on the web at
 http://auriga.wearlab.de/~alb/libjio.
diff --git a/doc/libjio.lyx b/doc/libjio.lyx
index 6af7ed0..645caff 100644
--- a/doc/libjio.lyx
+++ b/doc/libjio.lyx
@@ -25,7 +25,7 @@
 
 \layout Title
 
-libjio - A library for journalled I/O 
+libjio - A library for journaled I/O 
 \layout Author
 
 Alberto Bertogli (albertogli@telpin.com.ar) 
@@ -46,7 +46,7 @@ Introduction
 \emph on 
 libjio
 \emph default 
- is a library for doing journalled transaction-oriented I/O, providing atomicity
+ is a library for doing journaled transaction-oriented I/O, providing atomicity
  warantees and a simple to use but powerful API.
 \layout Standard
 
@@ -59,7 +59,7 @@ This document explains the design of the library, how it works internally
 \layout Standard
 
 To the user, libjio provides two groups of functions, one UNIX-alike that
- implements the journalled versions of the classic functions (
+ implements the journaled versions of the classic functions (
 \emph on 
 open()
 \emph default 
@@ -182,7 +182,7 @@ atomically
  all.
  This is a really common word, specially if you have worked with multiprocessing
 , and should be quite familiar.
- We implement atomicity by combining fine-grained locks and journalling,
+ We implement atomicity by combining fine-grained locks and journaling,
  which can assure us both to be able to recover from crashes, and to have
  exclusive access to a portion of the file without having any other transaction
  overlap it.
diff --git a/libjio.c b/libjio.c
index 613d7b9..1601965 100644
--- a/libjio.c
+++ b/libjio.c
@@ -1,6 +1,6 @@
 
 /*
- * libjio - A library for Journalled I/O
+ * libjio - A library for Journaled I/O
  * Alberto Bertogli (albertogli@telpin.com.ar)
  */
 
diff --git a/libjio.h b/libjio.h
index 239856b..50582ab 100644
--- a/libjio.h
+++ b/libjio.h
@@ -1,6 +1,6 @@
 
 /*
- * libjio - A library for Journalled I/O
+ * libjio - A library for Journaled I/O
  * Alberto Bertogli (albertogli@telpin.com.ar)
  */