Skip to content

Commit

Permalink
Typo fixes in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stsnel committed Jul 31, 2024
1 parent dd7c8d7 commit 96f712b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ find_package(IRODS 4.2.12 EXACT REQUIRED)
message(STATUS "Building for irods-server version ${IRODS_VERSION}")

# Note: Microservices for iRODS >= 4.2 need to be built with the compiler and
# standard libarary provided by iRODS-externals packages.
# standard library provided by iRODS-externals packages.
# The following packages need to be installed to build the uu microservices:
#
# irods-externals-clang-runtime3.11.4
Expand Down
2 changes: 1 addition & 1 deletion src/msiArchiveCreate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ int msiArchiveCreate(msParam_t* archiveIn,
return SYS_INVALID_INPUT_PARAM;
}

/* Parse input paramaters. */
/* Parse input parameters. */
const char* archiveStr = parseMspForStr(archiveIn);
const char* collectionStr = parseMspForStr(collectionIn);
if (archiveStr == NULL || collectionStr == NULL) {
Expand Down
2 changes: 1 addition & 1 deletion src/msiArchiveExtract.cc
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ int msiArchiveExtract(msParam_t* archiveIn,
return SYS_INVALID_INPUT_PARAM;
}

/* Parse input paramaters. */
/* Parse input parameters. */
const char* archiveStr = parseMspForStr(archiveIn);
const char* pathStr = parseMspForStr(pathIn);
if (archiveStr == NULL || pathStr == NULL) {
Expand Down
2 changes: 1 addition & 1 deletion src/msiArchiveIndex.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ int msiArchiveIndex(msParam_t* archiveIn, msParam_t* indexOut, ruleExecInfo_t* r
return SYS_INVALID_INPUT_PARAM;
}

/* Parse input paramaters. */
/* Parse input parameters. */
const char* archiveStr = parseMspForStr(archiveIn);
if (archiveStr == NULL) {
return SYS_INVALID_INPUT_PARAM;
Expand Down
4 changes: 2 additions & 2 deletions src/msiRegisterEpicPID.cc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ int msiRegisterEpicPID(msParam_t* valueIn, msParam_t* idInOut, msParam_t* httpCo
CURL* curl;
CURLcode res;

/* Check if user is priviliged. */
/* Check if user is privileged. */
if (rei->uoic->authInfo.authFlag < LOCAL_PRIV_USER_AUTH) {
return SYS_USER_NO_PERMISSION;
}
Expand All @@ -116,7 +116,7 @@ int msiRegisterEpicPID(msParam_t* valueIn, msParam_t* idInOut, msParam_t* httpCo
return SYS_INVALID_INPUT_PARAM;
}

/* Parse input paramaters. */
/* Parse input parameters. */
std::string value = parseMspForStr(valueIn);
std::string uuid = parseMspForStr(idInOut);

Expand Down

0 comments on commit 96f712b

Please sign in to comment.