Skip to content

Commit 21ac592

Browse files
melroy89thePunderWoman
authored andcommitted
docs: Fix typo in standalone section of Anatomy of a component (angular#58807)
PR Close angular#58807
1 parent 753e6f4 commit 21ac592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adev/src/content/guide/components/anatomy-of-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ import {ProfilePhoto} from './profile-photo';
7070
export class UserProfile { }
7171
```
7272

73-
By default, Angular components are *standalone*, meaning that you can directly add them to the `imports` array of other components. Components created with an earlier version of Angular may instead specify `standalone: false` in their `@Component` decorator. For these components, you instead import the `NgMdoule` in which the component is defined. See the full [`NgModule` guide](guide/ngmodules) for details.
73+
By default, Angular components are *standalone*, meaning that you can directly add them to the `imports` array of other components. Components created with an earlier version of Angular may instead specify `standalone: false` in their `@Component` decorator. For these components, you instead import the `NgModule` in which the component is defined. See the full [`NgModule` guide](guide/ngmodules) for details.
7474

7575
Important: In Angular versions before 19.0.0, the `standalone` option defaults to `false`.
7676

0 commit comments

Comments
 (0)