Skip to content

Commit

Permalink
Fix some typos spotted in the code and ChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
ccoVeille authored and andy5995 committed Mar 25, 2024
1 parent 13bba25 commit f77d629
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
2023-02-15

* change message displayed to user when a file being rmw'ed is on a
filesystem that doesn't haven't a WASTE folder defined
filesystem that doesn't have a WASTE folder defined
* rmw v0.9.0 released

2023-02-06
Expand Down Expand Up @@ -182,7 +182,7 @@

* When using -s,--select, the number of lines the terminal has will
be checked. The number of items in the list will be based on that; if
it doesn't meet the minumum requirement, rmw will exit.
it doesn't meet the minimum requirement, rmw will exit.

2021-02-23

Expand Down Expand Up @@ -811,7 +811,7 @@ Release issued.

-- August 04, 2016 --

The trash directory string issues seems to be fixed. I'm not sure why. I
The trash directory string issues seem to be fixed. I'm not sure why. I
moved some global variables into main() - maybe that helped. ;)

I moved some functions into the main() part of the code.
Expand Down Expand Up @@ -844,7 +844,7 @@ caused by too many open files at once. Added fclose(fp) to
line 353 of funcs.c in Restore Function.

May 03, 2012
Fixed segfault which ocurred if rmw was built on a 64-bit system
Fixed segfault which occurred if rmw was built on a 64-bit system

Apr 17, 2012

Expand Down
6 changes: 3 additions & 3 deletions src/bsdutils/compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/* Windows compatibility */
/* This is experimental
* Windows compatbility headers
* Windows compatibility headers
*/
#if defined __MINGW32__ || defined _MSC_VER
#include <inttypes.h>
Expand All @@ -26,7 +26,7 @@
* we need to import this else we are going to get a "declaration expected at
* line 29"
*
* including types.h allows us to fix erros in the mget declaration
* including types.h allows us to fix errors in the mget declaration
*
*/

Expand Down Expand Up @@ -75,7 +75,7 @@ typedef unsigned long u_long;
#pragma pop_macro("u_long")
#endif

/* Primarly musl... */
/* Primarily musl... */
#ifndef u_long
typedef unsigned long u_long;
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/messages_rmw.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ msg_err_rename(const char *src_file, const char *dest_file, const char *func,

/*!
* Used for error-checking calls to fprintf.
* @param[in] func The function in which the error ocurred
* @param[in] func The function in which the error occurred
* @return exit failure
*/
void
Expand Down
2 changes: 1 addition & 1 deletion src/utils_rmw.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ user_verify(void)
*
* - Alphabethics (A-Z and a-z)
* - Numerics (0-9)
* - The following charcters: ~ _ - .
* - The following characters: ~ _ - .
*
* For purposes of this application we will not convert "/"s, as in
* this case they correspond to their semantic meaning.
Expand Down

0 comments on commit f77d629

Please sign in to comment.