diff --git a/generators/cypress/templates/src/test/javascript/cypress/support/entity.ts.ejs b/generators/cypress/templates/src/test/javascript/cypress/support/entity.ts.ejs index 22613fac91b2..de0fa74c9fc0 100644 --- a/generators/cypress/templates/src/test/javascript/cypress/support/entity.ts.ejs +++ b/generators/cypress/templates/src/test/javascript/cypress/support/entity.ts.ejs @@ -47,7 +47,7 @@ Cypress.Commands.add('getEntityDeleteDialogHeading', (entityInstanceName: string Cypress.Commands.add('setFieldImageAsBytesOfEntity', (fieldName: string, fileName: string, mimeType: string) => { // fileName is the image which you have already put in cypress fixture folder - // should be like : 'integration-test.png', 'image/png' + // should be like: 'integration-test.png', 'image/png' cy.fixture(fileName).as('image') .get(`[data-cy="${fieldName}"]`).then(function(el) { const blob = Cypress.Blob.base64StringToBlob(this.image, mimeType); diff --git a/generators/docker/templates/docker/jhipster-control-center.yml.ejs b/generators/docker/templates/docker/jhipster-control-center.yml.ejs index ce20adbe2db8..c53e831a9f22 100644 --- a/generators/docker/templates/docker/jhipster-control-center.yml.ejs +++ b/generators/docker/templates/docker/jhipster-control-center.yml.ejs @@ -20,7 +20,7 @@ # To allow JHCC to reach JHipster application from a docker container note that we set the host as host.docker.internal # To reach the application from a browser, you need to add '127.0.0.1 host.docker.internal' to your hosts file. ### Discovery mode -# JHCC support 3 kinds of discovery mode: Consul, Eureka and static +# JHCC supports 3 kinds of discovery mode: Consul, Eureka and static # In order to use one, please set SPRING_PROFILES_ACTIVE to one (and only one) of this values: consul,eureka,static ### Discovery properties # According to the discovery mode choose as Spring profile, you have to set the right properties diff --git a/generators/vue/templates/src/main/webapp/app/shared/config/axios-interceptor.spec.ts.ejs b/generators/vue/templates/src/main/webapp/app/shared/config/axios-interceptor.spec.ts.ejs index 08581da680c2..540ed203794b 100644 --- a/generators/vue/templates/src/main/webapp/app/shared/config/axios-interceptor.spec.ts.ejs +++ b/generators/vue/templates/src/main/webapp/app/shared/config/axios-interceptor.spec.ts.ejs @@ -27,7 +27,7 @@ describe('Axios interceptor', () => { <%_ if (authenticationTypeJwt) { _%> sessionStorage.setItem('<%=jhiPrefixDashed %>-authenticationToken', 'auth'); <%_ } _%> - const result = setupAxiosConfig.onRequestSuccess(() => console.log('A problem occured')); + const result = setupAxiosConfig.onRequestSuccess(() => console.log('A problem occurred')); <%_ if (authenticationTypeJwt) { _%> expect(result.headers.Authorization).toBe('Bearer auth');