Skip to content

Commit 6245323

Browse files
committed
fix(@angular/ssr): correct grammar in console warning for redirected location headers
The console message had incorrect grammer.
1 parent 96202a3 commit 6245323

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/angular/ssr/src/utils/redirect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function createRedirectResponse(
4646
if (ngDevMode && resHeaders.has('location')) {
4747
// eslint-disable-next-line no-console
4848
console.warn(
49-
`Location header "${resHeaders.get('location')}" will ignored and set to "${location}".`,
49+
`Location header "${resHeaders.get('location')}" will be ignored and set to "${location}".`,
5050
);
5151
}
5252

0 commit comments

Comments
 (0)