Skip to content

Commit 5f1be96

Browse files
authored
NO-JIRA: Fix various typos and spelling errors (#32)
1 parent 772311f commit 5f1be96

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

docs/book/src/messaging-api/Qpid-Messaging-API.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ under the License.
219219
<callout id="callout-python-acknowledge" arearefs="hello-python-acknowledge">
220220
<para>Acknowledges receipt of all fetched messages on
221221
the session. This informs the broker that the messages were
222-
transfered and processed by the client successfully.</para>
222+
transferred and processed by the client successfully.</para>
223223
</callout>
224224
<callout id="callout-python-close" arearefs="hello-python-close">
225225
<para>Closes the connection, all sessions managed by the connection, and all senders and receivers managed by each session.</para>
@@ -311,7 +311,7 @@ under the License.
311311
<callout id="callout-csharp-acknowledge" arearefs="hello-csharp-acknowledge">
312312
<para>Acknowledges receipt of all fetched messages on the
313313
session. This informs the broker that the messages were
314-
transfered and processed by the client successfully.</para>
314+
transferred and processed by the client successfully.</para>
315315
</callout>
316316
<callout id="callout-csharp-close" arearefs="hello-csharp-close">
317317
<para>Closes the connection, all sessions managed by the connection, and all senders and receivers managed by each session.</para>
@@ -2483,9 +2483,9 @@ spout - -content "$(cat rdu.xml | sed -e 's/70/45/')" xml/weather
24832483
</para>
24842484
<para>
24852485
When sending to a queue, the queue's name is set as the
2486-
routing key and the message is transfered to the default (or
2486+
routing key and the message is transferred to the default (or
24872487
nameless) exchange. When sending to an exchange, the message
2488-
is transfered to that exchange and the routing key is set to
2488+
is transferred to that exchange and the routing key is set to
24892489
the message subject if one is specified. A default subject may
24902490
be specified in the target address. The subject may also be
24912491
set on each message individually to override the default if

docs/man/qpid-send.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ message header 'KEY' to hold the group
117117
identifier
118118
.TP
119119
\fB\-\-group\-prefix\fR STRING (GROUP\-)
120-
Generate group identifers with 'STRING'
120+
Generate group identifiers with 'STRING'
121121
prefix (if group\-key specified)
122122
.TP
123123
\fB\-\-group\-size\fR N (10)

docs/man/qpidd.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Override the federation tag
179179
.TP
180180
\fB\-\-session\-max\-unacked\fR DELIVERIES (5000)
181181
Maximum number of un\-acknowledged
182-
outoing messages per sesssion
182+
outoing messages per session
183183
.SS "Logging options:"
184184
.TP
185185
\fB\-t\fR [ \fB\-\-trace\fR ]

management/python/bin/qpid-send

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ op.add_option("--flow-control", default=0, type="int", help="Do end to end flow
7070
op.add_option("--sequence", type="str", default="yes", help="Add a sequence number messages property (required for duplicate/lost message detection)")
7171
op.add_option("--timestamp", type="str", default="yes", help="Add a time stamp messages property (required for latency measurement)")
7272
op.add_option("--group-key", type="str", help="Generate groups of messages using message header 'KEY' to hold the group identifier")
73-
op.add_option("--group-prefix", default="GROUP-", type="str", help="Generate group identifers with 'STRING' prefix (if group-key specified)")
73+
op.add_option("--group-prefix", default="GROUP-", type="str", help="Generate group identifiers with 'STRING' prefix (if group-key specified)")
7474
op.add_option("--group-size", default=10, type="int", help="Number of messages per a group (if group-key specified)")
7575
op.add_option("--group-randomize-size", default=False, action="store_true", help="Randomize the number of messages per group to [1...group-size] (if group-key specified)")
7676
op.add_option("--group-interleave", default=1, type="int", help="Simultaineously interleave messages from N different groups (if group-key specified)")

management/python/bin/qpid-store-resize

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class Resize(object):
105105

106106
def _create_new_files(self):
107107
"""Create new journal files"""
108-
# Assemble records to be transfered
108+
# Assemble records to be transferred
109109
master_record_list = {}
110110
txn_record_list = self._jrnl_reader.txn_obj_list()
111111
if self._opts.vflag and self._jrnl_reader.emap().size() > 0:

src/qpid/broker/Broker.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ BrokerOptions::BrokerOptions(const std::string& name) :
203203
("dtx-max-timeout", optValue(dtxMaxTimeout, "SECONDS"), "Maximum allowed timeout for DTX transaction. A value of zero disables maximum timeout limit checks and allows arbitrarily large timeout settings.")
204204
("max-negotiate-time", optValue(maxNegotiateTime, "MILLISECONDS"), "Maximum time a connection can take to send the initial protocol negotiation")
205205
("federation-tag", optValue(fedTag, "NAME"), "Override the federation tag")
206-
("session-max-unacked", optValue(sessionMaxUnacked, "DELIVERIES"), "Maximum number of un-acknowledged outoing messages per sesssion")
206+
("session-max-unacked", optValue(sessionMaxUnacked, "DELIVERIES"), "Maximum number of un-acknowledged outoing messages per session")
207207
;
208208
}
209209

@@ -1238,7 +1238,7 @@ Manageable::status_t Broker::queueRedirect(const std::string& srcQueue,
12381238
std::map<acl::Property, std::string> params;
12391239
params.insert(make_pair(acl::PROP_QUEUENAME, tgtQ->getName()));
12401240
if (!acl->authorise((context)?context->getUserId():"", acl::ACT_REDIRECT, acl::OBJ_QUEUE, srcQ->getName(), &params))
1241-
throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied redirect request from " << ((context)?context->getUserId():"(uknown)")));
1241+
throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied redirect request from " << ((context)?context->getUserId():"(unknown)")));
12421242
}
12431243

12441244
// Start the backup overflow partnership
@@ -1276,7 +1276,7 @@ Manageable::status_t Broker::queueRedirect(const std::string& srcQueue,
12761276
std::map<acl::Property, std::string> params;
12771277
params.insert(make_pair(acl::PROP_QUEUENAME, tgtQ->getName()));
12781278
if (!acl->authorise((context)?context->getUserId():"", acl::ACT_REDIRECT, acl::OBJ_QUEUE, srcQ->getName(), &params))
1279-
throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied redirect request from " << ((context)?context->getUserId():"(uknown)")));
1279+
throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied redirect request from " << ((context)?context->getUserId():"(unknown)")));
12801280
}
12811281

12821282
queueRedirectDestroy(srcQ, tgtQ, true);
@@ -1390,7 +1390,7 @@ int32_t Broker::queueMoveMessages(
13901390
std::map<acl::Property, std::string> params;
13911391
params.insert(make_pair(acl::PROP_QUEUENAME, dest_queue->getName()));
13921392
if (!acl->authorise((context)?context->getUserId():"", acl::ACT_MOVE, acl::OBJ_QUEUE, src_queue->getName(), &params))
1393-
throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied move request from " << ((context)?context->getUserId():"(uknown)")));
1393+
throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied move request from " << ((context)?context->getUserId():"(unknown)")));
13941394
}
13951395

13961396
return (int32_t) src_queue->move(dest_queue, qty, &filter);

src/qpid/broker/management-schema.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@
403403
<property name="source" type="sstr" access="RC"/>
404404
<property name="target" type="sstr" access="RC"/>
405405
<property name="domain" type="sstr" access="RC"/>
406-
<statistic name="transfers" type="count64" unit="message" desc="Messages transfered"/>
406+
<statistic name="transfers" type="count64" unit="message" desc="Messages transferred"/>
407407
</class>
408408
<!--
409409
===============================================================
@@ -417,7 +417,7 @@
417417
<property name="source" type="sstr" access="RC"/>
418418
<property name="target" type="sstr" access="RC"/>
419419
<property name="domain" type="sstr" access="RC"/>
420-
<statistic name="transfers" type="count64" unit="message" desc="Messages transfered"/>
420+
<statistic name="transfers" type="count64" unit="message" desc="Messages transferred"/>
421421
</class>
422422
<!--
423423
===============================================================

src/tests/legacystore/persistence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def phase2(self):
106106
session.message_transfer(destination="amq.topic",
107107
message=self.createMessage(routing_key="abc", correlation_id="Msg0003", body="AB_Message2"))
108108

109-
# #check LVQ exists and has exepected messages:
109+
# #check LVQ exists and has expected messages:
110110
# session.queue_declare(queue="lvq-test", durable=True, passive=True)
111111
# session.message_subscribe(destination="lvq", queue="lvq-test")
112112
# lvq = session.incoming("lvq")

src/tests/qpid-client-test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ int main(int argc, char** argv)
124124
SubscriptionManager subs(session);
125125
Message msgIn = subs.get("MyQueue");
126126
if (msgIn.getData() == msgOut.getData())
127-
if (opts.verbose) std::cout << "Received the exepected message." << std::endl;
127+
if (opts.verbose) std::cout << "Received the expected message." << std::endl;
128128

129129
//close the session & connection
130130
session.close();

src/tests/qpid-perftest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,12 @@ struct Opts : public TestOptions {
197197
transfers=(totalPubs*count) + (totalSubs*subQuota);
198198
if (tx) {
199199
if (txPub) {
200-
cerr << "WARNING: Using overriden tx value for publishers: " << txPub << std::endl;
200+
cerr << "WARNING: Using overridden tx value for publishers: " << txPub << std::endl;
201201
} else {
202202
txPub = tx;
203203
}
204204
if (txSub) {
205-
cerr << "WARNING: Using overriden tx value for subscribers: " << txSub << std::endl;
205+
cerr << "WARNING: Using overridden tx value for subscribers: " << txSub << std::endl;
206206
} else {
207207
txSub = tx;
208208
}

0 commit comments

Comments
 (0)