Skip to content

Commit 5bfa848

Browse files
committed
chore: update origin to 2ddf26e69906a09dfcc915cc44c3a0bcecd3af67
1 parent 152fb03 commit 5bfa848

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

adev-ja/src/app/features/update/recommendations.en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2752,7 +2752,7 @@ export const RECOMMENDATIONS: Step[] = [
27522752
},
27532753
{
27542754
action:
2755-
"In the application's project directory, run `ng update @angular/core@20 @angular/cli@21` to update your application to Angular v21.",
2755+
"In the application's project directory, run `ng update @angular/core@21 @angular/cli@21` to update your application to Angular v21.",
27562756
level: ApplicationComplexity.Basic,
27572757
necessaryAsOf: 2100,
27582758
possibleIn: 2100,

adev-ja/src/content/guide/forms/signals/models.en.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Form models solve this by centralizing form data in a single writable signal. Wh
1414

1515
A form model is a writable signal created with Angular's `signal()` function. The signal holds an object that represents your form's data structure.
1616

17-
```ts
17+
```angular-ts
1818
import { Component, signal } from '@angular/core'
1919
import { form, Field } from '@angular/forms/signals'
2020
@@ -150,7 +150,7 @@ Each field in the field tree is a function. Calling a field returns a `FieldStat
150150

151151
Access field state when working with individual fields in templates or reactive computations:
152152

153-
```ts
153+
```angular-ts
154154
@Component({
155155
template: `
156156
<p>Current email: {{ loginForm.email().value() }}</p>
@@ -292,7 +292,7 @@ This synchronization happens automatically. You don't write subscriptions or eve
292292

293293
### Example: Both directions
294294

295-
```ts
295+
```angular-ts
296296
@Component({
297297
template: `
298298
<input type="text" [field]="userForm.name" />
@@ -386,7 +386,7 @@ userForm.settings.theme // FieldTree<string>
386386

387387
In templates, you bind nested fields the same way as top-level fields:
388388

389-
```ts
389+
```angular-ts
390390
@Component({
391391
template: `
392392
<input [field]="userForm.profile.firstName" />

adev-ja/src/content/guide/routing/navigate-to-routes.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ The `router.navigateByUrl()` method provides a direct way to programmatically na
149149

150150
```ts
151151
// Standard route navigation
152-
router.navigateByUrl('/products);
152+
router.navigateByUrl('/products');
153153

154154
// Navigate to nested route
155155
router.navigateByUrl('/products/featured');

0 commit comments

Comments
 (0)