Skip to content

Commit

Permalink
Fix misspell (#662)
Browse files Browse the repository at this point in the history
Signed-off-by: Gerasimos (Makis) Maropoulos <kataras2006@hotmail.com>
  • Loading branch information
kataras authored Aug 20, 2020
1 parent ad0f18e commit 1cf446e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/kubectl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export class Kubectl {
zshScript += "test -f \"$OLD_ZDOTDIR/.zlogin\" && . \"$OLD_ZDOTDIR/.zlogin\"\n"
zshScript += "test -f \"$OLD_ZDOTDIR/.zshrc\" && . \"$OLD_ZDOTDIR/.zshrc\"\n"

// voodoo to replace any previous occurences of kubectl path in the PATH
// voodoo to replace any previous occurrences of kubectl path in the PATH
zshScript += `kubectlpath=\"${this.dirname}"\n`
zshScript += `helmpath=\"${helmPath}"\n`
zshScript += "p=\":$kubectlpath:\"\n"
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/api/endpoints/pods.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export class Pod extends WorkloadKubeObject {
return PodStatus.PENDING;
}

// Returns pod phase or container error if occured
// Returns pod phase or container error if occurred
getStatusMessage() {
if (this.getReason() === PodStatus.EVICTED) return "Evicted";
if (this.getStatus() === PodStatus.RUNNING && this.metadata.deletionTimestamp) return "Terminating";
Expand Down

0 comments on commit 1cf446e

Please # to comment.