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

Commit 1e225d7

Browse files
committed
Fix lintian spelling-error-in-binary: attibute -> attribute
1 parent 6c4ecac commit 1e225d7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines 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/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/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/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)