From d9bcfb69eac3950ee0e86379a418b3b0cc4137e1 Mon Sep 17 00:00:00 2001
From: bruce
Date: Sat, 30 Aug 2003 14:11:52 +0000
Subject: [PATCH] Two words: Spell Checker
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2076 b35dd754-fafc-0310-a699-88a17e54d16e
---
documentation/debugging.html | 2 +-
documentation/messaging.html | 6 +++---
documentation/processing.html | 2 +-
documentation/properties.html | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/documentation/debugging.html b/documentation/debugging.html
index 82f3ed635..907884631 100644
--- a/documentation/debugging.html
+++ b/documentation/debugging.html
@@ -49,7 +49,7 @@ Debugging mode can be enabled in two different ways:
-If you wish to explicity disable debug mode in your application, including using the command-line parameter,
+If you wish to explicitly disable debug mode in your application, including using the command-line parameter,
add the following line to your application before opening new connections:
diff --git a/documentation/messaging.html b/documentation/messaging.html
index c6c176f3c..a07f40e31 100644
--- a/documentation/messaging.html
+++ b/documentation/messaging.html
@@ -16,7 +16,7 @@ Messaging using Chat and GroupChat
Sending messages back and forth is at the core of instant messaging. Two classes
-aid in sending and recieiving messages:
+aid in sending and receiving messages:
- org.jivesoftware.smack.Chat -- used to send messages between two people.
- org.jivesoftware.smack.GroupChat -- used to join a chat room to send messages between many people.
@@ -31,7 +31,7 @@ Chat and GroupChat classes to send and listen for messages directly.
Chat
-A chat creates a new thread of messgaes (using a thread ID) between two users. The
+A chat creates a new thread of messages (using a thread ID) between two users. The
following code snippet demonstrates how to create a new Chat with a user and then send
them a text message:
@@ -88,7 +88,7 @@ message.
// Assume we've created an XMPPConnection name "connection".
GroupChat newGroupChat = connection.createGroupChat("test@jivesoftware.com");
-// Join the gropu chat using the nickname "jsmith".
+// Join the group chat using the nickname "jsmith".
newGroupChat.join("jsmith");
// Send a message to all the other people in the chat room.
newGroupChat.sendMessage("Howdy!");
diff --git a/documentation/processing.html b/documentation/processing.html
index 6aeaa24e0..ab2793990 100644
--- a/documentation/processing.html
+++ b/documentation/processing.html
@@ -67,7 +67,7 @@ to the PacketFilter interface. The default set of filters includes:
- PacketTypeFilter -- filters for packets that are a particular Class type.
- PacketIDFilter -- filters for packets with a particular packet ID.
-
- ThreadFilter -- filters for message packets with a parituclar thread ID.
+
- ThreadFilter -- filters for message packets with a particular thread ID.
- ToContainsFilter -- filters for packets that are sent to a particular address.
- FromContainsFilter -- filters for packets that are sent to a particular address.
- PacketExtensionFilter -- filters for packets that have a particular packet extension.
diff --git a/documentation/properties.html b/documentation/properties.html
index 14ac19043..04ed7a1e6 100644
--- a/documentation/properties.html
+++ b/documentation/properties.html
@@ -73,7 +73,7 @@ you should keep the following in mind:
- Objects sent as property values must implement Serialiable. Additionally, both the sender
and receiver must have identical versions of the class, or a serialization exception
- will occur when de-serialiazing the object.
+ will occur when de-serializing the object.
- Serialized objects can potentially be quite large, which will use more bandwidth and
server resources.