Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.

Commit b187b7e

Browse files
authored
Merge pull request #621 from t-b/fix-spelling-errors
Fix spelling errors
2 parents b2bfef4 + 5f16680 commit b187b7e

16 files changed

+26
-26
lines changed

cpp_test_suite/environment/setup.sh

100644100755
File mode changed.

cpp_test_suite/environment/shutdown.sh

100644100755
File mode changed.

cpp_test_suite/event/att_conf_event_buffer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ int main(int argc, char **argv)
184184

185185

186186
//
187-
// Subscribe for attibute configuration events.
187+
// Subscribe for attribute configuration events.
188188
// Set-up the event buffers to keep only the last 5 received events
189189
//
190190
cb.cb_executed = 0;
@@ -231,7 +231,7 @@ int main(int argc, char **argv)
231231
cout << " unsubscribe_event --> OK" << endl;
232232

233233
//
234-
// Subscribe for attibute configuration events.
234+
// Subscribe for attribute configuration events.
235235
// Set-up the event buffers to keep all received events
236236
//
237237
cb.cb_executed = 0;

cpp_test_suite/event/data_ready_event_buffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ int main(int argc, char **argv)
181181
cout << " unsubscribe_event --> OK" << endl;
182182

183183
//
184-
// Subscribe for attibute configuration events.
184+
// Subscribe for attribute configuration events.
185185
// Set-up the event buffers to keep only the last 5 received events
186186
//
187187

cppapi/client/Connection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
/**
4343
* Base class for Tango device access
4444
*
45-
* Base class for Tango device access. This class is pure virtual and can be instanciated
45+
* Base class for Tango device access. This class is pure virtual and can be instantiated
4646
* as is.
4747
*
4848
* $Author: taurel $

cppapi/client/eventqueue.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ EventQueue::~EventQueue()
111111
}
112112

113113
//
114-
// for attibute configuration events
114+
// for attribute configuration events
115115
//
116116

117117
else

cppapi/client/zmqeventconsumer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ void ZmqEventConsumer::process_heartbeat(zmq::message_t &received_event_name,zmq
447447

448448
{
449449
omniORB::logger log;
450-
log << "ZMQ: Endianess" << '\n';
450+
log << "ZMQ: Endianness" << '\n';
451451
}
452452
omni::giopStream::dumpbuf((unsigned char *)received_endian.data(),received_endian.size());
453453

@@ -537,7 +537,7 @@ void ZmqEventConsumer::process_event(zmq::message_t &received_event_name,zmq::me
537537

538538
{
539539
omniORB::logger log;
540-
log << "ZMQ: Endianess" << '\n';
540+
log << "ZMQ: Endianness" << '\n';
541541
}
542542
omni::giopStream::dumpbuf((unsigned char *)received_endian.data(),received_endian.size());
543543

@@ -615,7 +615,7 @@ void ZmqEventConsumer::process_event(zmq_msg_t &received_event_name,zmq_msg_t &r
615615

616616
{
617617
omniORB::logger log;
618-
log << "ZMQ: Endianess" << '\n';
618+
log << "ZMQ: Endianness" << '\n';
619619
}
620620
omni::giopStream::dumpbuf((unsigned char *)zmq_msg_data(&received_endian),zmq_msg_size(&received_endian));
621621

cppapi/server/attribute.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,7 @@ class Attribute
15941594
/**
15951595
* Fire a change event for the attribute value. The event is pushed to the notification
15961596
* daemon.
1597-
* The attibute data must be set with one of the Attribute::set_value or
1597+
* The attribute data must be set with one of the Attribute::set_value or
15981598
* Attribute::setvalue_date_quality methods before fireing the event.
15991599
* The event is triggered with or without the change event criteria depending
16001600
* on the configuration choosen with set_change_event().
@@ -1652,7 +1652,7 @@ class Attribute
16521652
/**
16531653
* Fire an archive event for the attribute value. The event is pushed to the notification
16541654
* daemon.
1655-
* The attibute data must be set with one of the Attribute::set_value or
1655+
* The attribute data must be set with one of the Attribute::set_value or
16561656
* Attribute::setvalue_date_quality methods before fireing the event.
16571657
* The event is triggered with or without the archive event criteria depending
16581658
* on the configuration choosen with set_archive_event().
@@ -1724,7 +1724,7 @@ class Attribute
17241724
/**
17251725
* Fire a user event for the attribute value. The event is pushed to the notification
17261726
* daemon.
1727-
* The attibute data must be set with one of the Attribute::set_value or
1727+
* The attribute data must be set with one of the Attribute::set_value or
17281728
* Attribute::setvalue_date_quality methods before fireing the event.
17291729
* ATTENTION: The couple set_value() and fire_event() needs to be protected
17301730
* against concurrent accesses to the same attribute. Such an access might happen during

cppapi/server/attribute_spec.tpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#define _ATTRIBUTE_SPEC_TPP
3535

3636
//
37-
// These methods are in a sepearte files because I did not find a way to explicitely instanciate specialized
37+
// These methods are in a sepearte files because I did not find a way to explicitely instantiate specialized
3838
// templates. Therefore, for template management we have three files:
3939
// 1 - A file with explicit template instanciation (templ_inst.cpp)
4040
// 2 - A file with template method definition (attribute.tpp for Attribute class)

cppapi/server/device.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ char *DeviceImpl::status()
18291829
try
18301830
{
18311831
AutoTangoMonitor sync(this);
1832-
cout4 << "DeviceImpl::status (attibute) arrived" << endl;
1832+
cout4 << "DeviceImpl::status (attribute) arrived" << endl;
18331833

18341834
//
18351835
// Write the device name into the per thread data for

0 commit comments

Comments
 (0)