Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/cpp/find.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ int main()
std::cout << "Callback\n";
std::cout << "--------\n\n";

// We are re-using the query in the next call to "find", so do not move it.
// We are reusing the query in the next call to "find", so do not move it.
scu.find(query, print_informations);

std::cout << "\n";
Expand All @@ -67,7 +67,7 @@ int main()
std::cout << "vector\n";
std::cout << "------\n\n";

// We are not re-using the query, so move it.
// We are not reusing the query, so move it.
auto const result = scu.find(std::move(query));
for(auto const & dataset: result)
{
Expand Down
4 changes: 2 additions & 2 deletions src/odil/FindSCU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ namespace odil
{

FindSCU
::FindSCU(Association & asociation)
: SCU(asociation)
::FindSCU(Association & association)
: SCU(association)
{
// Nothing else.
}
Expand Down
4 changes: 2 additions & 2 deletions src/odil/dul/StateMachine.h
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ class ODIL_API StateMachine
void AA_2(EventData & data);

/**
* @brief If (service-user inititated abort): issue A-ABORT indication and
* close transport connection ; otherwise (service-provider inititated
* @brief If (service-user initiated abort): issue A-ABORT indication and
* close transport connection ; otherwise (service-provider initiated
* abort): issue A-P-ABORT indication and close transport connection.
*/
void AA_3(EventData & data);
Expand Down
4 changes: 2 additions & 2 deletions tests/tools/scu.cc
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ OFCondition DcmSCU::initNetwork()
return cond;
}

/* initialize asscociation parameters, i.e. create an instance of T_ASC_Parameters*. */
/* initialize association parameters, i.e. create an instance of T_ASC_Parameters*. */
cond = ASC_createAssociationParameters(&m_params, m_maxReceivePDULength);
if (cond.bad())
{
Expand Down Expand Up @@ -2447,7 +2447,7 @@ void RetrieveResponse::print()
** abstract syntax UID and the transfer syntax UID.
**
** Revision 1.30 2011-05-24 08:38:39 ogazzar
** Added role selection negotiation while adding a presenation context.
** Added role selection negotiation while adding a presentation context.
**
** Revision 1.29 2011-05-19 17:19:52 onken
** Fixed some documentation. Added some extra checks for NULL when handling MOVE
Expand Down
2 changes: 1 addition & 1 deletion wrappers/python/Value.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ void wrap_Value(pybind11::module & m)
;

// NOTE Using bind_vector brings back #63.
// Re-use the code of bind_vector and modify where needed.
// Reuse the code of bind_vector and modify where needed.
{
using Vector = Value::Strings;
std::string const name = "Strings";
Expand Down