Skip to content

Commit 5a3c5de

Browse files
committed
style: add periods
1 parent 15947e1 commit 5a3c5de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/components/router/router.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ export class Router implements ComponentInterface {
233233
animation?: AnimationBuilder
234234
): Promise<boolean> {
235235
if (!segments) {
236-
printIonError('[ion-router] - URL is not part of the routing set');
236+
printIonError('[ion-router] - URL is not part of the routing set.');
237237
return false;
238238
}
239239

@@ -254,7 +254,7 @@ export class Router implements ComponentInterface {
254254
const routes = readRoutes(this.el);
255255
const chain = findChainForSegments(segments, routes);
256256
if (!chain) {
257-
printIonError('[ion-router] - The path does not match any route');
257+
printIonError('[ion-router] - The path does not match any route.');
258258
return false;
259259
}
260260

@@ -339,7 +339,7 @@ export class Router implements ComponentInterface {
339339
animation?: AnimationBuilder
340340
): Promise<boolean> {
341341
if (this.busy) {
342-
printIonWarning('[ion-router] - Router is busy, transition was cancelled');
342+
printIonWarning('[ion-router] - Router is busy, transition was cancelled.');
343343
return false;
344344
}
345345
this.busy = true;

0 commit comments

Comments
 (0)