Skip to content

Commit

Permalink
Merge pull request #2201 from jwillemsen/jwi-typo9
Browse files Browse the repository at this point in the history
Fixed typos
  • Loading branch information
jwillemsen committed Feb 21, 2024
2 parents bd6cd5b + 9ac320c commit d055988
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ACE/ace/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ class ACE_Export ACE_Configuration
* error The path consists of sections separated by the backslash
* '\' or forward slash '/'.
* Returns 0 on success, -1 if <create) is 0 and the path refers
* a nonexistant section
* a non-existent section
*/
int expand_path (const ACE_Configuration_Section_Key& key,
const ACE_TString& path_in,
Expand Down
4 changes: 2 additions & 2 deletions ACE/protocols/tests/HTBP/Reactor_Tests/test_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const size_t ACE_MAX_THREADS = 4;

#if defined (VXWORKS)
// This is the only way I could figure out to avoid an error
// about attempting to unlink a non-existant file.
// about attempting to unlink a non-existent file.
#define ACE_INIT_LOG(NAME) \
ACE_TCHAR temp[MAXPATHLEN]; \
ACE_OS::sprintf (temp, ACE_TEXT ("%s%s%s"), \
Expand Down Expand Up @@ -198,7 +198,7 @@ ACE_Test_Output::set_output (const ACE_TCHAR *filename, int append)
#if defined (VXWORKS)
// This is the only way I could figure out to avoid a console
// warning about opening an existing file (w/o O_CREAT), or
// attempting to unlink a non-existant one.
// attempting to unlink a non-existent one.
ACE_HANDLE fd = ACE_OS::open (temp,
O_WRONLY|O_CREAT,
S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
Expand Down
2 changes: 1 addition & 1 deletion ACE/tests/Test_Output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ ACE_Test_Output::set_output (const ACE_TCHAR *filename, int append)
#if defined (ACE_VXWORKS)
// This is the only way I could figure out to avoid a console
// warning about opening an existing file (w/o O_CREAT), or
// attempting to unlink a non-existant one.
// attempting to unlink a non-existent one.
ACE_HANDLE fd = ACE_OS::open (temp,
O_WRONLY|O_CREAT,
S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
Expand Down
2 changes: 1 addition & 1 deletion TAO/orbsvcs/tests/HTIOP/AMI/Test_Output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ ACE_Test_Output::set_output (const ACE_TCHAR *filename, int append)
#if defined (VXWORKS)
// This is the only way I could figure out to avoid a console
// warning about opening an existing file (w/o O_CREAT), or
// attempting to unlink a non-existant one.
// attempting to unlink a non-existent one.
ACE_HANDLE fd = ACE_OS::open (temp,
O_WRONLY|O_CREAT,
S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
Expand Down
2 changes: 1 addition & 1 deletion TAO/orbsvcs/tests/HTIOP/BiDirectional/Test_Output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ ACE_Test_Output::set_output (const ACE_TCHAR *filename, int append)
#if defined (VXWORKS)
// This is the only way I could figure out to avoid a console
// warning about opening an existing file (w/o O_CREAT), or
// attempting to unlink a non-existant one.
// attempting to unlink a non-existent one.
ACE_HANDLE fd = ACE_OS::open (temp,
O_WRONLY|O_CREAT,
S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
Expand Down
2 changes: 1 addition & 1 deletion TAO/orbsvcs/tests/HTIOP/Hello/Test_Output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ ACE_Test_Output::set_output (const ACE_TCHAR *filename, int append)
#if defined (VXWORKS)
// This is the only way I could figure out to avoid a console
// warning about opening an existing file (w/o O_CREAT), or
// attempting to unlink a non-existant one.
// attempting to unlink a non-existent one.
ACE_HANDLE fd = ACE_OS::open (temp,
O_WRONLY|O_CREAT,
S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
Expand Down
2 changes: 1 addition & 1 deletion TAO/tao/PI/PICurrent_Impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ TAO::PICurrent_Impl::~PICurrent_Impl ()
this->impending_change_callback_->convert_from_lazy_to_real_copy ();

// If we have logically copied another table, ensure it is told about our
// demise so that it will not call our non-existant
// demise so that it will not call our non-existent
// convert_from_lazy_to_real_copy() when it changes/destructs.
if (0 != this->lazy_copy_)
this->lazy_copy_->set_callback_for_impending_change (0);
Expand Down
4 changes: 2 additions & 2 deletions TAO/tests/POA/FindPOA/FindPOA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])

poa_manager->activate ();

// Try to find a non-existant POA. Since the Adapter Activator
// Try to find a non-existent POA. Since the Adapter Activator
// has not been installed yet, this call should fail.
find_non_existant_POA (root_poa.in (),
"firstPOA",
Expand All @@ -88,7 +88,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
first_poa->find_POA (name.c_str (),
1);

// Try to find a non-existant POA. Even though the Adapter
// Try to find a non-existent POA. Even though the Adapter
// Activator has been installed, this call should fail because
// the activate (if not found) flag is 0.
find_non_existant_POA (root_poa.in (),
Expand Down

0 comments on commit d055988

Please sign in to comment.