diff --git a/backend/app_gen/openapi/test.go b/backend/app_gen/openapi/test.go index b7cde4f4..ec818b25 100644 --- a/backend/app_gen/openapi/test.go +++ b/backend/app_gen/openapi/test.go @@ -180,7 +180,7 @@ func generateYaml(swagger *openapi3.Swagger) (WorkflowApp, []string, error) { api.Name = swagger.Info.Title api.Description = swagger.Info.Description api.IsValid = true - api.Link = swagger.Servers[0].URL // host doesnt exist lol + api.Link = swagger.Servers[0].URL // host does not exist lol api.AppVersion = "1.0.0" api.Environment = "cloud" api.ID = "" diff --git a/backend/app_gen/openapi/testGCP.go b/backend/app_gen/openapi/testGCP.go index da5510b8..a792ff3c 100644 --- a/backend/app_gen/openapi/testGCP.go +++ b/backend/app_gen/openapi/testGCP.go @@ -216,7 +216,7 @@ func generateYaml(swagger *openapi3.Swagger) (WorkflowApp, []string, error) { api.Name = swagger.Info.Title api.Description = swagger.Info.Description api.IsValid = true - api.Link = swagger.Servers[0].URL // host doesnt exist lol + api.Link = swagger.Servers[0].URL // host does not exist lol api.AppVersion = "1.0.0" api.Environment = "cloud" api.ID = "" diff --git a/backend/app_gen/python-lib/generator.py b/backend/app_gen/python-lib/generator.py index 2af39cdc..e982439c 100644 --- a/backend/app_gen/python-lib/generator.py +++ b/backend/app_gen/python-lib/generator.py @@ -246,7 +246,7 @@ def loop_modules(modules, data): param["position"] = cnt if not found: - # FIXME - waht here? + # FIXME - what here? pass #print("HANDLE NOT FOUND") #print(param) diff --git a/backend/app_sdk/app_base.py b/backend/app_sdk/app_base.py index e2a7f4f5..9c0e165a 100644 --- a/backend/app_sdk/app_base.py +++ b/backend/app_sdk/app_base.py @@ -150,7 +150,7 @@ class AppBase: self.logger.info("AFTER FULLEXEC stream result") - # Gets the value at the paranthesis level you want + # Gets the value at the parenthesis level you want def parse_nested_param(string, level): """ Generate strings contained in nested (), indexing i = level @@ -173,7 +173,7 @@ class AppBase: except IndexError: return [string[LeftRightIndex[level+1][0]:LeftRightIndex[level+1][1]]] - # Finds the deepest level paranthesis in a string + # Finds the deepest level parenthesis in a string def maxDepth(S): current_max = 0 max = 0 diff --git a/backend/go-app/codegen.go b/backend/go-app/codegen.go index a5898e5d..81aea65d 100644 --- a/backend/go-app/codegen.go +++ b/backend/go-app/codegen.go @@ -434,7 +434,7 @@ func generateYaml(swagger *openapi3.Swagger, newmd5 string) (*openapi3.Swagger, //uuid.NewV4().String() api.IsValid = true - api.Link = swagger.Servers[0].URL // host doesnt exist lol + api.Link = swagger.Servers[0].URL // host does not exist lol if strings.HasSuffix(api.Link, "/") { api.Link = api.Link[:len(api.Link)-1] } diff --git a/frontend/src/views/EditWebhook.jsx b/frontend/src/views/EditWebhook.jsx index ba42a58b..9ec5879c 100644 --- a/frontend/src/views/EditWebhook.jsx +++ b/frontend/src/views/EditWebhook.jsx @@ -336,7 +336,7 @@ const EditWebhook = (props) => { : null - // FIXME - needs refresh everytime you add a new workflow + // FIXME - needs refresh every time you add a new workflow const workflowdata = Object.getOwnPropertyNames(webhookData).length > 0 && selectedWorkflows.length > 0 ? : null diff --git a/functions/onprem/orborus/orborus.go b/functions/onprem/orborus/orborus.go index 3ce6ba52..8023c755 100644 --- a/functions/onprem/orborus/orborus.go +++ b/functions/onprem/orborus/orborus.go @@ -212,7 +212,7 @@ func initializeImages() { log.Printf("[WARNING] SHUFFLE_WORKER_VERSION not defined. Defaulting to %s", workerVersion) } - // check whether theyre the same first + // check whether they are the same first images := []string{ fmt.Sprintf("docker.io/%s:app_sdk", baseimagename), fmt.Sprintf("docker.io/%s:worker", baseimagename),