Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import type { Plugin } from 'esbuild';
* @param options Optional configuration object.
* - `ssrEntryBundle`: If `true`, marks the bundle as an SSR entry point.
*
* @note We can't rely on `platform: node` or `platform: neutral`, as the latter
* @remarks We can't rely on `platform: node` or `platform: neutral`, as the latter
* is used for non-SSR-related code too (e.g., global scripts).
* @returns An esbuild plugin that injects SSR metadata into the build result's metafile.
*/
Expand Down
6 changes: 3 additions & 3 deletions packages/angular/cli/src/analytics/analytics-parameters.mts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export enum RequestParameter {

/**
* User scoped custom dimensions.
* @notes
* @remarks
* - User custom dimensions limit is 25.
* - `up.*` string type.
* - `upn.*` number type.
Expand All @@ -61,7 +61,7 @@ export enum UserCustomDimension {

/**
* Event scoped custom dimensions.
* @notes
* @remarks
* - Event custom dimensions limit is 50.
* - `ep.*` string type.
* - `epn.*` number type.
Expand All @@ -84,7 +84,7 @@ export enum EventCustomDimension {

/**
* Event scoped custom mertics.
* @notes
* @remarks
* - Event scoped custom mertics limit is 50.
* - `ep.*` string type.
* - `epn.*` number type.
Expand Down
6 changes: 3 additions & 3 deletions packages/angular/cli/src/analytics/analytics-parameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export enum RequestParameter {

/**
* User scoped custom dimensions.
* @notes
* @remarks
* - User custom dimensions limit is 25.
* - `up.*` string type.
* - `upn.*` number type.
Expand All @@ -63,7 +63,7 @@ export enum UserCustomDimension {

/**
* Event scoped custom dimensions.
* @notes
* @remarks
* - Event custom dimensions limit is 50.
* - `ep.*` string type.
* - `epn.*` number type.
Expand All @@ -86,7 +86,7 @@ export enum EventCustomDimension {

/**
* Event scoped custom mertics.
* @notes
* @remarks
* - Event scoped custom mertics limit is 50.
* - `ep.*` string type.
* - `epn.*` number type.
Expand Down
4 changes: 2 additions & 2 deletions packages/angular/ssr/node/src/app-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { createWebRequestFromNodeRequest } from './request';
* Manages Angular server applications (including localized ones), handles rendering requests,
* and optionally transforms index HTML before rendering.
*
* @note This class should be instantiated once and used as a singleton across the server-side
* @remarks This class should be instantiated once and used as a singleton across the server-side
* application to ensure consistent handling of rendering requests and resource management.
*
* @developerPreview
Expand All @@ -31,7 +31,7 @@ export class AngularNodeAppEngine {
* @param requestContext - Optional context for rendering, such as metadata associated with the request.
* @returns A promise that resolves to the resulting HTTP response object, or `null` if no matching Angular route is found.
*
* @note A request to `https://www.example.com/page/index.html` will serve or render the Angular route
* @remarks A request to `https://www.example.com/page/index.html` will serve or render the Angular route
* corresponding to `https://www.example.com/page`.
*/
async handle(request: IncomingMessage, requestContext?: unknown): Promise<Response | null> {
Expand Down
4 changes: 2 additions & 2 deletions packages/angular/ssr/src/app-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { stripIndexHtmlFromURL, stripTrailingSlash } from './utils/url';
* Manages Angular server applications (including localized ones), handles rendering requests,
* and optionally transforms index HTML before rendering.
*
* @note This class should be instantiated once and used as a singleton across the server-side
* @remarks This class should be instantiated once and used as a singleton across the server-side
* application to ensure consistent handling of rendering requests and resource management.
*
* @developerPreview
Expand Down Expand Up @@ -60,7 +60,7 @@ export class AngularAppEngine {
* @param requestContext - Optional context for rendering, such as metadata associated with the request.
* @returns A promise that resolves to the resulting HTTP response object, or `null` if no matching Angular route is found.
*
* @note A request to `https://www.example.com/page/index.html` will serve or render the Angular route
* @remarks A request to `https://www.example.com/page/index.html` will serve or render the Angular route
* corresponding to `https://www.example.com/page`.
*/
async handle(request: Request, requestContext?: unknown): Promise<Response | null> {
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/ssr/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class AngularServerApp {
* @param requestContext - Optional context for rendering, such as metadata associated with the request.
* @returns A promise that resolves to the resulting HTTP response object, or `null` if no matching Angular route is found.
*
* @note A request to `https://www.example.com/page/index.html` will serve or render the Angular route
* @remarks A request to `https://www.example.com/page/index.html` will serve or render the Angular route
* corresponding to `https://www.example.com/page`.
*/
async handle(request: Request, requestContext?: unknown): Promise<Response | null> {
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/ssr/src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface EntryPointExports {
/**
* A reference to the function that creates an Angular server application instance.
*
* @note The return type is `unknown` to prevent circular dependency issues.
* @remarks The return type is `unknown` to prevent circular dependency issues.
*/
ɵgetOrCreateAngularServerApp: () => unknown;

Expand Down