diff --git a/src/main/java/tech/jhipster/lite/module/domain/replacement/EndOfFileReplacer.java b/src/main/java/tech/jhipster/lite/module/domain/replacement/EndOfFileReplacer.java index 3adf5aff7ec..0b1f3a51379 100644 --- a/src/main/java/tech/jhipster/lite/module/domain/replacement/EndOfFileReplacer.java +++ b/src/main/java/tech/jhipster/lite/module/domain/replacement/EndOfFileReplacer.java @@ -7,7 +7,7 @@ import tech.jhipster.lite.shared.generation.domain.ExcludeFromGeneratedCodeCoverage; /** - * {@link ElementReplacer} that inserts content at end of the file if the provided condition is met + * {@link ElementReplacer} that inserts content at the end of the file if the provided condition is met * @param condition */ public record EndOfFileReplacer(ReplacementCondition condition) implements ElementReplacer { diff --git a/src/main/resources/generator/client/angular/admin/src/main/webapp/app/admin/health/modal/health-modal.component.spec.ts.mustache b/src/main/resources/generator/client/angular/admin/src/main/webapp/app/admin/health/modal/health-modal.component.spec.ts.mustache index 5b65d655449..db40e03f2c6 100644 --- a/src/main/resources/generator/client/angular/admin/src/main/webapp/app/admin/health/modal/health-modal.component.spec.ts.mustache +++ b/src/main/resources/generator/client/angular/admin/src/main/webapp/app/admin/health/modal/health-modal.component.spec.ts.mustache @@ -52,7 +52,7 @@ describe('HealthModalComponent', () => { expect(result).toEqual('jhipster'); }); - it('should return storage space in an human readable unit (GB)', () => { + it('should return storage space in a human readable unit (GB)', () => { comp.healthDetails = { key: 'diskSpace', status: 'UP', @@ -63,7 +63,7 @@ describe('HealthModalComponent', () => { expect(result).toEqual('1.00 GB'); }); - it('should return storage space in an human readable unit (MB)', () => { + it('should return storage space in a human readable unit (MB)', () => { comp.healthDetails = { key: 'diskSpace', status: 'UP', diff --git a/src/main/resources/generator/client/angular/admin/src/main/webapp/app/admin/health/modal/health-modal.component.ts.mustache b/src/main/resources/generator/client/angular/admin/src/main/webapp/app/admin/health/modal/health-modal.component.ts.mustache index dd1d37a04c5..01b22c16008 100644 --- a/src/main/resources/generator/client/angular/admin/src/main/webapp/app/admin/health/modal/health-modal.component.ts.mustache +++ b/src/main/resources/generator/client/angular/admin/src/main/webapp/app/admin/health/modal/health-modal.component.ts.mustache @@ -23,7 +23,7 @@ export class HealthModalComponent { readableValue(value: any): string { if (this.healthDetails.key === 'diskSpace') { - // Should display storage space in an human readable unit + // Should display storage space in a human readable unit const val = value / this.GIGABYTE; if (val > 1) { return `${val.toFixed(2)} GB`; diff --git a/src/main/resources/generator/client/common/hexagonal-documentation/front-hexagonal-architecture.md.mustache b/src/main/resources/generator/client/common/hexagonal-documentation/front-hexagonal-architecture.md.mustache index 15f0a044eff..0e72434ead0 100644 --- a/src/main/resources/generator/client/common/hexagonal-documentation/front-hexagonal-architecture.md.mustache +++ b/src/main/resources/generator/client/common/hexagonal-documentation/front-hexagonal-architecture.md.mustache @@ -8,7 +8,7 @@ This documentation is not an introduction to hexagonal architecture. If you want ## Folder structure -in `src/main/webapp/app` root folders represents the bounded contexts. When starting something new, you won't know what +in `src/main/webapp/app` root folder represents the bounded contexts. When starting something new, you won't know what Bounded Context you're in. Don't spend too much time on that: create a folder, and you'll rename / move it later. Let's dive into a Bounded Context (example in vue.js, but it's the same for other frontends frameworks):