fix(docs): Fixed various letter casing and script errors

Signed-off-by: Łukasz Jernaś <lukasz.jernas@allegro.com>
This commit is contained in:
Łukasz Jernaś
2024-09-05 17:10:40 +02:00
parent 5b43f7f78f
commit 326faeddae
22 changed files with 39 additions and 31 deletions
@@ -197,7 +197,7 @@ When declaring a service factory you may also want to make the export the buildi
```ts
export class DefaultFooService {
static create(options: { transform: (foo: string) => string }) {
return new DefaultFooService(options.transform ?? (foo) => foo);
return new DefaultFooService(options.transform ?? ((foo) => foo);
}
private constructor(private readonly transform: (foo: string) => string) {}