Skip to content

Commit aea2465

Browse files
SkyZeroZxpkozlowski-opensource
authored andcommitted
docs: update notes to use consistent formatting in various guides
1 parent 4e1d1ec commit aea2465

26 files changed

Lines changed: 26 additions & 26 deletions

File tree

adev/src/content/guide/aria/combobox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Use documented patterns instead when:
5151
- Single-selection dropdowns are needed - See the [Select pattern](guide/aria/select) for complete dropdown implementation
5252
- Multiple-selection dropdowns are needed - See the [Multiselect pattern](guide/aria/multiselect) for multi-select with compact display
5353

54-
Note: The [Autocomplete](guide/aria/autocomplete), [Select](guide/aria/select), and [Multiselect](guide/aria/multiselect) guides show documented patterns that combine this directive with [Listbox](guide/aria/listbox) for specific use cases.
54+
NOTE: The [Autocomplete](guide/aria/autocomplete), [Select](guide/aria/select), and [Multiselect](guide/aria/multiselect) guides show documented patterns that combine this directive with [Listbox](guide/aria/listbox) for specific use cases.
5555

5656
## Features
5757

adev/src/content/guide/routing/define-routes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ There are many factors to consider when deciding on whether a route should be ea
258258

259259
In general, eager loading is recommended for primary landing page(s) while other pages would be lazy-loaded.
260260

261-
Note: While lazy routes have the upfront performance benefit of reducing the amount of initial data requested by the user, it adds future data requests that could be undesirable. This is particularly true when dealing with nested lazy loading at multiple levels, which can significantly impact performance.
261+
NOTE: While lazy routes have the upfront performance benefit of reducing the amount of initial data requested by the user, it adds future data requests that could be undesirable. This is particularly true when dealing with nested lazy loading at multiple levels, which can significantly impact performance.
262262

263263
## Redirects
264264

adev/src/content/guide/routing/lifecycle-and-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class RouterEventsComponent {
5555
}
5656
```
5757

58-
Note: The [`Event`](api/router/Event) type from `@angular/router` is named the same as the regular global [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event) type, but it is different from the [`RouterEvent`](api/router/RouterEvent) type.
58+
NOTE: The [`Event`](api/router/Event) type from `@angular/router` is named the same as the regular global [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event) type, but it is different from the [`RouterEvent`](api/router/RouterEvent) type.
5959

6060
## How to debug routing events
6161

adev/src/content/guide/routing/route-guards.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ All route guards share the same possible return types. This gives you flexibilit
2626
| `UrlTree` or `RedirectCommand` | Redirects to another route instead of blocking |
2727
| `Promise<T>` or `Observable<T>` | Router uses the first emitted value and then unsubscribes |
2828

29-
Note: `CanMatch` behaves differently— when it returns `false`, Angular tries other matching routes instead of completely blocking navigation.
29+
NOTE: `CanMatch` behaves differently— when it returns `false`, Angular tries other matching routes instead of completely blocking navigation.
3030

3131
## Types of route guards
3232

adev/src/content/tutorials/learn-angular/steps/1-components-in-angular/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Components are the foundational building blocks for any Angular application. Eac
66
- HTML template
77
- CSS styles
88

9-
Note: Learn more about [components in the essentials guide](/essentials/components).
9+
NOTE: Learn more about [components in the essentials guide](/essentials/components).
1010

1111
In this activity, you'll learn how to update the template and styles of a component.
1212

adev/src/content/tutorials/learn-angular/steps/10-deferrable-views/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Sometimes in app development, you end up with a lot of components that you need
44

55
Maybe they are below the visible fold or are heavy components that aren't interacted with until later. In that case, we can load some of those resources later with deferrable views.
66

7-
Note: Learn more about [deferred loading with @defer in the in-depth guide](/guide/templates/defer).
7+
NOTE: Learn more about [deferred loading with @defer in the in-depth guide](/guide/templates/defer).
88

99
In this activity, you'll learn how to use deferrable views to defer load a section of your component template.
1010

adev/src/content/tutorials/learn-angular/steps/11-optimizing-images/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Images are a big part of many applications, and can be a major contributor to ap
44

55
Image optimization can be a complex topic, but Angular handles most of it for you, with the `NgOptimizedImage` directive.
66

7-
Note: Learn more about [image optimization with NgOptimizedImage in the in-depth guide](/guide/image-optimization).
7+
NOTE: Learn more about [image optimization with NgOptimizedImage in the in-depth guide](/guide/image-optimization).
88

99
In this activity, you'll learn how to use `NgOptimizedImage` to ensure your images are loaded efficiently.
1010

adev/src/content/tutorials/learn-angular/steps/12-enable-routing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
For most apps, there comes a point where the app requires more than a single page. When that time inevitably comes, routing becomes a big part of the performance story for users.
44

5-
Note: Learn more about [routing in the in-depth guide](/guide/routing).
5+
NOTE: Learn more about [routing in the in-depth guide](/guide/routing).
66

77
In this activity, you'll learn how to set up and configure your app to use Angular Router.
88

adev/src/content/tutorials/learn-angular/steps/13-define-a-route/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Now that you've set up the app to use Angular Router, you need to define the routes.
44

5-
Note: Learn more about [defining a basic route in the in-depth guide](/guide/routing/common-router-tasks#defining-a-basic-route).
5+
NOTE: Learn more about [defining a basic route in the in-depth guide](/guide/routing/common-router-tasks#defining-a-basic-route).
66

77
In this activity, you'll learn how to add and configure routes with your app.
88

adev/src/content/tutorials/learn-angular/steps/14-routerLink/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In the app's current state, the entire page refreshes when we click on an internal link that exists within the app. While this may not seem significant with a small app, this can have performance implications for larger pages with more content where users have to redownload assets and run calculations again.
44

5-
Note: Learn more about [adding routes to your application in the in-depth guide](/guide/routing/common-router-tasks#add-your-routes-to-your-application).
5+
NOTE: Learn more about [adding routes to your application in the in-depth guide](/guide/routing/common-router-tasks#add-your-routes-to-your-application).
66

77
In this activity, you'll learn how to leverage the `RouterLink` directive to make the most use of Angular Router.
88

0 commit comments

Comments
 (0)