Skip to content

Commit 2f7fe6c

Browse files
authored
Merge pull request #624 from hyperweb-io/anmol/fix-typos
fix typos in starship
2 parents 7091ec2 + e1b19f6 commit 2f7fe6c

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

clients/go/client/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func (f *Feature) GetRESTAddr() string {
6060

6161
// Config is the struct for the config.yaml setup file
6262
// todo: move this to a more common place, outside just tests
63-
// todo: can be moved to proto defination
63+
// todo: can be moved to proto definition
6464
type Config struct {
6565
Chains []*Chain `name:"chains" json:"chains" yaml:"chains"`
6666
Relayers []*Relayer `name:"relayers" json:"relayers" yaml:"relayers"`

clients/js/packages/client/__tests__/__snapshots__/client.config.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ sleep 2
4242
kubectl get pods --no-headers -o custom-columns=:metadata.name
4343
helm delete osmojs
4444
kubectl get pods --no-headers -o custom-columns=:metadata.name
45-
Log: All pods have been sucessfully terminated!"
45+
Log: All pods have been successfully terminated!"
4646
`;
4747

4848
exports[`StarshipClient setup 2`] = `

clients/js/packages/client/__tests__/__snapshots__/client.ports.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ sleep 2
4040
kubectl get pods --no-headers -o custom-columns=:metadata.name
4141
helm delete osmojs
4242
kubectl get pods --no-headers -o custom-columns=:metadata.name
43-
Log: All pods have been sucessfully terminated!"
43+
Log: All pods have been successfully terminated!"
4444
`;
4545

4646
exports[`StarshipClient setup 2`] = `

clients/js/packages/client/__tests__/__snapshots__/client.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ sleep 2
4040
kubectl get pods --no-headers -o custom-columns=:metadata.name
4141
helm delete osmojs
4242
kubectl get pods --no-headers -o custom-columns=:metadata.name
43-
Log: All pods have been sucessfully terminated!"
43+
Log: All pods have been successfully terminated!"
4444
`;
4545

4646
exports[`StarshipClient setup 2`] = `

clients/js/packages/client/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ export class StarshipClient implements StarshipClientI {
606606
});
607607

608608
if (this.podStatuses.size === 0) {
609-
this.log(chalk.green('All pods have been sucessfully terminated!'));
609+
this.log(chalk.green('All pods have been successfully terminated!'));
610610
// once the pods are in done state, wait for 1 more seconds
611611
await new Promise((resolve) => setTimeout(resolve, 1000));
612612
return;

docs/pages/config/relayers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ relayers:
139139
Available endpoints on
140140
* `rest` endpoints: https://hermes.informal.systems/documentation/rest-api.html?highlight=rest#rest-api
141141
* `exposer` endpoint
142-
* `/create_channel` endpoint: Supports post request. Proto defination: https://github.com/hyperweb-io/starship/blob/main/starship/proto/exposer/service.proto#L47
142+
* `/create_channel` endpoint: Supports post request. Proto definition: https://github.com/hyperweb-io/starship/blob/main/starship/proto/exposer/service.proto#L47
143143

144144
One can use the exposer endpoint on the relayer to create channel from outside.
145145
Note: Still an experimental feature on exposer

examples/injective/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Details of each of arguments in the config file can be found [here](https://docs
8989
* `configs/*.yaml`: Various config files as described above
9090
* `scripts/`: Handy scripts for dealing with starship setup and running
9191
* `scripts/dev-setup.sh`: Checks for dependencies
92-
* `scripts/port-forward.sh`: Performs local port-forwarding based on config file definations
92+
* `scripts/port-forward.sh`: Performs local port-forwarding based on config file definitions
9393
* `scripts/install.sh`: Installs helm chart in a connected kubernetes cluster
9494
* `Makefile`: Single entrypoint for Starship, has all commands needed
9595
* `READMD.md`: Readme file

examples/neutron/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Details of each of arguments in the config file can be found [here](https://docs
9595
* `configs/scripts/`: Custom scripts used by the config file for setup. More details [here](https://docs.cosmology.zone/starship/config/chains#scripts-optional)
9696
* `scripts/`: Handy scripts for dealing with starship setup and running
9797
* `scripts/dev-setup.sh`: Checks for dependencies
98-
* `scripts/port-forward.sh`: Performs local port-forwarding based on config file definations
98+
* `scripts/port-forward.sh`: Performs local port-forwarding based on config file definitions
9999
* `scripts/install.sh`: Installs helm chart in a connected kubernetes cluster
100100
* `Makefile`: Single entrypoint for Starship, has all commands needed
101101
* `READMD.md`: Readme file

starship/cmd/starship/connect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ func (c *Client) CheckKubectl() error {
200200
return nil
201201
}
202202

203-
// CheckPortForward verfify if all pods are in running state, and ready to be port-forwarded
203+
// CheckPortForward verify if all pods are in running state, and ready to be port-forwarded
204204
// * perform kubectl get pods
205205
// * check status of pods to be running based on the config
206206
// * return error if port-forwarding is not ready

starship/tests/e2e/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type Feature struct {
4040

4141
// Config is the struct for the config.yaml setup file
4242
// todo: move this to a more common place, outside of just tests
43-
// todo: can be moved to proto defination
43+
// todo: can be moved to proto definition
4444
type Config struct {
4545
Chains []*Chain `name:"chains" json:"chains" yaml:"chains"`
4646
Relayers []*Relayer `name:"relayers" json:"relayers" yaml:"relayers"`

0 commit comments

Comments
 (0)