Skip to content

Commit

Permalink
Merge pull request #5761 from garlick/typos
Browse files Browse the repository at this point in the history
fix various typos
  • Loading branch information
mergify[bot] committed Mar 5, 2024
2 parents 22fccef + 6c92f45 commit 1d6dbed
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check Spelling
uses: crate-ci/typos@e477391cc0243daaeeb154a7bfa67cb7d6fc5831 # v1.16.8
uses: crate-ci/typos@bcafd462cb07ef7ba57e34abf458fe20767e808b # v1.19.0

python-lint:
name: python linting
Expand Down
1 change: 1 addition & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ extend-exclude = [
"t/sharness.sh",
"src/common/libutil/sha1.c",
"src/common/libutil/test/sha1.c",
"src/common/libutil/test/blobref.c",
"src/common/libmissing/*.[ch]",
"t/hwloc-data/*",
]
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -1631,7 +1631,7 @@ used to manage and report the status of the overlay network.
* various other cleanup (#3762)

### Testsuite
* udate to flux-security v0.5.0 in docker images (#3849)
* update to flux-security v0.5.0 in docker images (#3849)
* make valgrind test opt-in (#3840)
* add valgrind suppression for opencl and libev on aarch64 (#3794, #3809)

Expand Down Expand Up @@ -2942,7 +2942,7 @@ flux-core version 0.5.0 - 2016-10-27
* Add hierarchical lwj directory support in kvs (#811)
* doc/man1/flux-start.adoc: Fix example option usage (#852)
* add dlopen RTLD_DEEPBIND flag (#849)
* src/broker/broker.c: Fix typo flux_repond -> flux_respond (#851)
* src/broker/broker.c: Fix typo (#851)
* doc/man1/flux-module.adoc: Fix environment variable error (#850)
* Pull in json-c, allowing internals to link against alternate json libraries. (#835)
* Add enhanced flux_rpc functions using libjansson json_pack/unpack functions
Expand Down
2 changes: 1 addition & 1 deletion src/broker/boot_pmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ int boot_pmi (struct overlay *overlay, attr_t *attrs)
}

/* Fetch the business card of all ranks and build hostlist.
* The hostlist is built indepenedently (and in parallel) on all ranks.
* The hostlist is built independently (and in parallel) on all ranks.
*/
for (i = 0; i < info.size; i++) {
const char *peer_hostname;
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/builtin/relay.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* children that connect to a locally provided socket, it only handles
* one client, pre-connected on stdin, stdout.
*
* The ssh connectors starts flux-relay(1) remotely with ssh.
* The ssh connector starts flux-relay(1) remotely with ssh.
* flux-relay(1) connects to a flux broker on the remote system.
* The ssh connector communicates with flux-relay through stdio.
*
Expand Down Expand Up @@ -137,7 +137,7 @@ static int cmd_relay (optparse_t *p, int ac, char *av[])
* unlikely event gethostname(3) fails, use "unknown-host".)
*
* This will be more helpful than a literal "flux-relay" logging prefix
* for end users that may be unknowningly using flux-relay as part of
* for end users that may be unknowingly using flux-relay as part of
* the ssh connector.
*/
log_init ("unknown-host");
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/flux-module.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ static void parse_json (optparse_t *p, const char *json_str)
o = obj;

/* Display the resulting object/value, optionally forcing
* the type to int or dobule, and optionally scaling the result.
* the type to int or double, and optionally scaling the result.
*/
scale = optparse_get_double (p, "scale", 1.0);
typestr = optparse_get_str (p, "type", NULL);
Expand Down
2 changes: 1 addition & 1 deletion src/modules/resource/reslog.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ struct reslog *reslog_create (flux_t *h);
void reslog_destroy (struct reslog *reslog);

/* Post an event to the eventlog. This function returns immediately,
* and the commit to * the eventlog completes asynchronously.
* and the commit to the eventlog completes asynchronously.
* If 'request' is non-NULL, a success/fail response is sent upon commit
* completion.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/modules/resource/topo.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* If resources are known at module load time, verify the topology against
* this rank's portion of the resource object (unless noverify is set).
*
* Reduce r_local + xml from each rank, leaving the result in topo->reduce->rl
* Reduce r_local from each rank, leaving the result in topo->reduce->rl
* on rank 0. If resources are not known, then this R is set in inventory.
*/

Expand Down
2 changes: 1 addition & 1 deletion t/t0005-exec.t
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ test_expect_success 'flux exec -d none works' '

# Run a script on ranks 0-3 simultaneously with each rank writing the
# rank id to a file. After successful completion, the contents of the files
# are verfied to ensure each rank connected to the right broker.
# are verified to ensure each rank connected to the right broker.
test_expect_success 'test_on_rank works on multiple ranks' '
output_dir=$(pwd) &&
rm -f rank_output.* &&
Expand Down
2 changes: 1 addition & 1 deletion t/t2110-job-ingest-validator.t
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ test_expect_success 'job-ingest: stop the queue so no more jobs run' '
test_expect_success 'job-ingest: load feasibilty validator plugin' '
ingest_module reload validator-plugins=feasibility
'
test_expect_success 'job-ingest: feasibility check succceeds with ENOSYS' '
test_expect_success 'job-ingest: feasibility check succeeds with ENOSYS' '
flux module remove sched-simple &&
flux submit -g 1 hostname &&
flux submit -n 10000 hostname &&
Expand Down

0 comments on commit 1d6dbed

Please sign in to comment.