Skip to content

Commit 8cc96b2

Browse files
committed
fix: resolve linting issues
1 parent 2ea8b42 commit 8cc96b2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

adev-ja/src/content/guide/http/interceptors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export function redirectTrackingInterceptor(req: HttpRequest<unknown>, next: Htt
181181
}
182182
</docs-code>
183183

184-
また、リダイレクト情報を使用してインターセプターで条件付きロジックを実装することもできます
184+
また、リダイレクト情報を使用してインターセプターで条件付きロジックを実装できます
185185

186186
<docs-code language="ts">
187187
export function authRedirectInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>> {

adev-ja/src/content/reference/errors/NG3003.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ export class ChildComponent {
2828
}
2929
</docs-code>
3030

31-
`ChildComponent`はコンストラクタで`ParentComponent`を参照しているため、`child.component.ts`から`parent.component.ts`へのインポートがすでに存在しています。
31+
`ChildComponent`はコンストラクターで`ParentComponent`を参照しているため、`child.component.ts`から`parent.component.ts`へのインポートがすでに存在しています。
3232

3333
HELPFUL: 親コンポーネントのテンプレートには`<child></child>`が含まれています。
3434
このテンプレートの生成されたコードには、`ChildComponent`クラスへの参照を含める必要があります。
35-
この参照を行うために、コンパイラは`parent.component.ts`から`child.component.ts`へのインポートを追加する必要があり、これがインポートの循環の原因となります。
35+
この参照をするために、コンパイラは`parent.component.ts`から`child.component.ts`へのインポートを追加する必要があり、これがインポートの循環の原因となります。
3636

3737
<docs-code language="text">
3838

0 commit comments

Comments
 (0)