Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix simple typo, hierarcicaly -> hierarchically #626

Merged
merged 1 commit into from
Mar 15, 2021
Merged
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 libopts/autoopts/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ extern int optionFileLoad(tOptions *, char const *);


/**
* optionFindNextValue - find a hierarcicaly valued option instance
* optionFindNextValue - find a hierarchically valued option instance
*
* This routine will find the next entry in a nested value option or
* configurable. It will search through the list and return the next entry
Expand All @@ -856,7 +856,7 @@ extern const tOptionValue * optionFindNextValue(const tOptDesc *, const tOptionV


/**
* optionFindValue - find a hierarcicaly valued option instance
* optionFindValue - find a hierarchically valued option instance
*
* This routine will find an entry in a nested value option or configurable.
* It will search through the list and return a matching entry.
Expand Down
4 changes: 2 additions & 2 deletions libopts/configfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ configFileLoad(char const * fname)

/*=export_func optionFindValue
*
* what: find a hierarcicaly valued option instance
* what: find a hierarchically valued option instance
* arg: + const tOptDesc * + odesc + an option with a nested arg type +
* arg: + char const * + name + name of value to find +
* arg: + char const * + val + the matching value +
Expand Down Expand Up @@ -220,7 +220,7 @@ optionFindValue(const tOptDesc * odesc, char const * name, char const * val)
*
* FIXME: the handling of 'pzName' and 'pzVal' is just wrong.
*
* what: find a hierarcicaly valued option instance
* what: find a hierarchically valued option instance
* arg: + const tOptDesc * + odesc + an option with a nested arg type +
* arg: + const tOptionValue * + pPrevVal + the last entry +
* arg: + char const * + name + name of value to find +
Expand Down
2 changes: 1 addition & 1 deletion libopts/restore.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/*
* optionFixupSavedOpts Really, it just wipes out option state for
* options that are troublesome to copy. viz., stacked strings and
* hierarcicaly valued option args. We do duplicate string args that
* hierarchically valued option args. We do duplicate string args that
* have been marked as allocated though.
*/
static void
Expand Down