fix(docs): Fixed various letter casing and script errors
Signed-off-by: Łukasz Jernaś <lukasz.jernas@allegro.com>
This commit is contained in:
@@ -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) {}
|
||||
|
||||
Reference in New Issue
Block a user