summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2009-11-29 11:14:42 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2009-11-29 11:14:42 +0000
commit06f5899980c4133d49e304c2c54aeed2f7815438 (patch)
tree8a06067697ad0d715e103df59a6b5269a09be8f3 /documentation
parentad473c8208aea1bea379190ddf3cde1c473e4afc (diff)
Fix for documentation typos provided by Josef Vitu. Thanks.
Added Josef Vitu to CREDITS. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6946 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation')
-rw-r--r--documentation/src/common.dox8
-rw-r--r--documentation/src/drawing.dox2
-rw-r--r--documentation/src/events.dox4
-rw-r--r--documentation/src/examples.dox4
-rw-r--r--documentation/src/fluid.dox2
-rw-r--r--documentation/src/subclassing.dox2
-rw-r--r--documentation/src/unicode.dox6
7 files changed, 14 insertions, 14 deletions
diff --git a/documentation/src/common.dox b/documentation/src/common.dox
index 96692d20b..6b3e19587 100644
--- a/documentation/src/common.dox
+++ b/documentation/src/common.dox
@@ -313,9 +313,9 @@ and the same as outlines only (<tt>UP_FRAME</tt> and <tt>DOWN_FRAME</tt>).
The function
\ref common_fl_down "fl_down(Fl_Boxtype)"
expects the neutral design on a boxtype with a numerical
-value evenly divideable by two.
+value evenly dividable by two.
\ref common_fl_frame "fl_frame(Fl_Boxtype)"
-expects the \p UP_BOX design at a value divideable by four.
+expects the \p UP_BOX design at a value dividable by four.
\section common_labels Labels and Label Types
@@ -342,7 +342,7 @@ The @ sign may also be followed by the following optional
\li +[1-9] or -[1-9] tweaks the scaling a little bigger or smaller.
-\li '$' flips the symbol horizontaly, '%' flips it verticaly.
+\li '$' flips the symbol horizontally, '%' flips it vertically.
\li [0-9] - rotates by a multiple of 45 degrees. '5' and '6' do no rotation
while the others point in the direction of that key on a numeric keypad.
@@ -396,7 +396,7 @@ To make an image you use a subclass of
Label types are actually indexes into a table of functions
that draw them. The primary purpose of this is to use this to
draw the labels in ways inaccessible through the
-fl_font() mechanisim (e.g. <tt>FL_ENGRAVED_LABEL</tt>) or
+fl_font() mechanism (e.g. <tt>FL_ENGRAVED_LABEL</tt>) or
with program-generated letters or symbology.
<CENTER><TABLE WIDTH="80%" BORDER="1" CELLPADDING="5" CELLSPACING="0" BGCOLOR="#cccccc">
diff --git a/documentation/src/drawing.dox b/documentation/src/drawing.dox
index e3e220bc4..299709574 100644
--- a/documentation/src/drawing.dox
+++ b/documentation/src/drawing.dox
@@ -409,7 +409,7 @@ void fl_transformed_vertex(double xf, double yf)
\par
Transform a coordinate or a distance using the current transformation matrix.
After transforming a coordinate pair, it can be added to the vertex
-list without any forther translations using \p %fl_transformed_vertex().
+list without any further translations using \p %fl_transformed_vertex().
void fl_begin_points() <br>
void fl_end_points()
diff --git a/documentation/src/events.dox b/documentation/src/events.dox
index e5a984bfe..21eb3f0b6 100644
--- a/documentation/src/events.dox
+++ b/documentation/src/events.dox
@@ -266,7 +266,7 @@ selection indication. Most modern programs ignore this.
FLTK supports drag and drop of text and files from any
application on the desktop. Text is transfered using
the current code page. Files are received as a list of full path
-and file names, seperated by newline. On some platforms, path
+and file names, separated by newline. On some platforms, path
names are prepended with <tt>%file://</tt>.
The drag and drop data is available in Fl::event_text()
@@ -298,7 +298,7 @@ The mouse has moved out of the widget.
The user has released the mouse button dropping data into
the widget. If the widget returns 1, it will receive the data in
-the immediatly following \p FL_PASTE event.
+the immediately following \p FL_PASTE event.
<!-- NEED 6in -->
diff --git a/documentation/src/examples.dox b/documentation/src/examples.dox
index 72797d441..ae83046e4 100644
--- a/documentation/src/examples.dox
+++ b/documentation/src/examples.dox
@@ -188,7 +188,7 @@ the use of timeouts and matrix based drawing.
\c colbrowser runs only on X11 systems. It reads
<i>/usr/lib/X11/rgb.txt</i> to show the color representation
of every text entry in the file. This is beautiful, but
-only moderatly useful unless your UI is written in <i>Motif</i>.
+only moderately useful unless your UI is written in <i>Motif</i>.
\subsection examples_color_chooser color_chooser
@@ -478,7 +478,7 @@ button behavior.
\par
\c resizebox shows some possible ways of FLTK's automatic
-resize bahavior..
+resize behavior.
\subsection examples_resize resize
diff --git a/documentation/src/fluid.dox b/documentation/src/fluid.dox
index 9decaf6ef..044ba14fe 100644
--- a/documentation/src/fluid.dox
+++ b/documentation/src/fluid.dox
@@ -817,7 +817,7 @@ Widgets will be sorted from first to last.
\par Layout/Make Same Size/...
\par
-Make all slected widgets the same size as the first selected widget.
+Make all selected widgets the same size as the first selected widget.
\par Layout/Center in Group/...
diff --git a/documentation/src/subclassing.dox b/documentation/src/subclassing.dox
index d2e208809..57c004165 100644
--- a/documentation/src/subclassing.dox
+++ b/documentation/src/subclassing.dox
@@ -226,7 +226,7 @@ use it for any purpose you want. Try to keep the value less than 100
to not interfere with reserved values.
\par
-FLTK does not use RTTI (Run Time Typing Infomation), to enhance
+FLTK does not use RTTI (Run Time Typing Information), to enhance
portability. But this may change in the near future if RTTI becomes
standard everywhere.
diff --git a/documentation/src/unicode.dox b/documentation/src/unicode.dox
index 7346d246e..7528f0a28 100644
--- a/documentation/src/unicode.dox
+++ b/documentation/src/unicode.dox
@@ -23,7 +23,7 @@ For further information, please see:
\par The Unicode Standard
The Unicode Standard was originally developed by a consortium of mainly
-US computer manufacturers and developers of mult-lingual software.
+US computer manufacturers and developers of multi-lingual software.
It has now become a defacto standard for character encoding,
and is supported by most of the major computing companies in the world.
@@ -121,7 +121,7 @@ some level of synchronisation and error detection.
</table>
Moving from ASCII encoding to Unicode will allow all new FLTK
-applications to be easily internationalized and and used all
+applications to be easily internationalized and used all
over the world. By choosing UTF-8 encoding, FLTK remains
largely source-code compatible to previous iteration of the
library.
@@ -428,7 +428,7 @@ converts the strings to lower case Unicode as part of the comparison.
\li initial transfer of the Ian/O'ksi'D patch
\li adapted Makefiles and IDEs for available platforms
-\li hacked some Unicode keybard entry for OS X
+\li hacked some Unicode keyboard entry for OS X
\par ISSUES: