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

Commit bbf4437

Browse files
committed
Fix lintian spelling-error-in-binary: occured -> occurred
1 parent 1ecbd77 commit bbf4437

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

cppapi/client/group.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ bool GroupCmdReply::extract (std::vector<DevLong>& vl, std::vector<std::string>&
372372
errors.length(1);
373373
errors[0].severity = Tango::ERR;
374374
errors[0].desc = Tango::string_dup("unknown exception caught");
375-
errors[0].reason = Tango::string_dup("an error occured while trying to extract data");
375+
errors[0].reason = Tango::string_dup("an error occurred while trying to extract data");
376376
errors[0].origin = Tango::string_dup("GroupCmdReply::extract");
377377
DevFailed df(errors);
378378
exception_m = df;
@@ -430,7 +430,7 @@ bool GroupCmdReply::extract (std::vector<double>& vd, std::vector<std::string>&
430430
errors.length(1);
431431
errors[0].severity = Tango::ERR;
432432
errors[0].desc = Tango::string_dup("unknown exception caught");
433-
errors[0].reason = Tango::string_dup("an error occured while trying to extract data");
433+
errors[0].reason = Tango::string_dup("an error occurred while trying to extract data");
434434
errors[0].origin = Tango::string_dup("GroupCmdReply::extract");
435435
DevFailed df(errors);
436436
exception_m = df;

cppapi/client/group.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class GroupReply
177177
static bool enable_exception (bool exception_mode = true);
178178
//- has_failed accessor
179179
/**
180-
* Check if an error has occured
180+
* Check if an error has occurred
181181
*
182182
* Returns a boolean set to true if the command executed on the group
183183
* element has failed. Otherwise, returns false
@@ -416,7 +416,7 @@ class GroupReplyList : public std::vector<GroupReply>
416416
///@publicsection
417417
//- has_failed accessor
418418
/**
419-
* Check if an error has occured
419+
* Check if an error has occurred
420420
*
421421
* Returns a boolean set to true if the write_attribute executed on the group has failed
422422
* for any device member of the hierarchy. Otherwise, returns false
@@ -482,7 +482,7 @@ class GroupCmdReplyList : public std::vector<GroupCmdReply>
482482
///@publicsection
483483
//- has_failed accessor method
484484
/**
485-
* Check if an error has occured
485+
* Check if an error has occurred
486486
*
487487
* Returns a boolean set to true if the command executed on the group has failed
488488
* for any device member of the hierarchy. Otherwise, returns false
@@ -547,7 +547,7 @@ class GroupAttrReplyList : public std::vector<GroupAttrReply>
547547
///@publicsection
548548
//- has_failed accessor method
549549
/**
550-
* Check if an error has occured
550+
* Check if an error has occurred
551551
*
552552
* Returns a boolean set to true if the read_attribute executed on the group has failed
553553
* for any device member of the hierarchy. Otherwise, returns false
@@ -1759,7 +1759,7 @@ bool GroupCmdReply::operator>> (T& dest)
17591759
errors.length(1);
17601760
errors[0].severity = Tango::ERR;
17611761
errors[0].desc = Tango::string_dup("unknown exception caught");
1762-
errors[0].reason = Tango::string_dup("an error occured while trying to extract data");
1762+
errors[0].reason = Tango::string_dup("an error occurred while trying to extract data");
17631763
errors[0].origin = Tango::string_dup("GroupCmdReply::operator>>");
17641764
DevFailed df(errors);
17651765
GroupReply::exception_m = df;
@@ -1822,7 +1822,7 @@ bool GroupAttrReply::operator>> (T& dest)
18221822
errors.length(1);
18231823
errors[0].severity = Tango::ERR;
18241824
errors[0].desc = Tango::string_dup("unknown exception caught");
1825-
errors[0].reason = Tango::string_dup("an error occured while trying to extract data");
1825+
errors[0].reason = Tango::string_dup("an error occurred while trying to extract data");
18261826
errors[0].origin = Tango::string_dup("GroupAttrReply::operator>>");
18271827
DevFailed df(errors);
18281828
GroupReply::exception_m = df;

log4tango/include/log4tango/Appender.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public:
8383
/**
8484
* Reopens the output destination of this Appender, e.g. the logfile
8585
* or TCP socket.
86-
* @returns false if an error occured during reopening, true otherwise.
86+
* @returns false if an error occurred during reopening, true otherwise.
8787
**/
8888
virtual bool reopen (void);
8989

log4tango/log4tango.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ echo "*** The log4tango-config script installed by LOG4TANGO could not be found"
147147
echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
148148
echo "***" ],
149149
[ echo "*** The test program failed to compile or link. See the file config.log for the"
150-
echo "*** exact error that occured. This usually means LOG4TANGO was incorrectly installed"
150+
echo "*** exact error that occurred. This usually means LOG4TANGO was incorrectly installed"
151151
echo "*** or that you have moved LOG4TANGO since it was installed. In the latter case, you"
152152
echo "*** may want to edit the log4tango-config script: $LOG4TANGO_CONFIG" ])
153153
CFLAGS="$ac_save_CFLAGS"

0 commit comments

Comments
 (0)