Skip to content

Commit e8669cc

Browse files
committed
chore(docs): Removing url paths that don't exist
1 parent 7cf2d13 commit e8669cc

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

firestore/README.md

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

55
## Introduction
66

7-
FriendlyEats is a restaurant recommendation app built on Firestore. It was built with the [Angular](https://angular.io/) Javascript framework, and can make use of [Firebase's Local Emulator Suite][emulator-docs] (specifically, the [Authentication](https://firebase.google.com/docs/emulator-suite/connect_auth), [Storage](https://firebase.google.com/docs/emulator-suite/connect_storage), [Functions](https://firebase.google.com/docs/emulator-suite/connect_functions), and [Firestore](https://firebase.google.com/docs/emulator-suite/connect_firestore) emulators) so that the quickstart can be run without needing to create a project in the [Firebase Console](https://console.firebase.google.com).
7+
FriendlyEats is a restaurant recommendation app built on Firestore. It was built with the [Angular](https://angular.dev/) Javascript framework, and can make use of [Firebase's Local Emulator Suite][emulator-docs] (specifically, the [Authentication](https://firebase.google.com/docs/emulator-suite/connect_auth), [Storage](https://firebase.google.com/docs/emulator-suite/connect_storage), [Functions](https://firebase.google.com/docs/emulator-suite/connect_functions), and [Firestore](https://firebase.google.com/docs/emulator-suite/connect_firestore) emulators) so that the quickstart can be run without needing to create a project in the [Firebase Console](https://console.firebase.google.com).
88

99
For more information about Firestore visit the [Firestore docs][firestore-docs].
1010

firestore/docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Friendly Eats application is a full-stack application with a clear separatio
44

55
## Frontend
66

7-
The frontend is an [Angular](https://angular.io/) application located in the root directory of the project. It is responsible for rendering the user interface and interacting with the Firebase services. For more details, see the [frontend documentation](./frontend.md).
7+
The frontend is an [Angular](https://angular.dev/) application located in the root directory of the project. It is responsible for rendering the user interface and interacting with the Firebase services. For more details, see the [frontend documentation](./frontend.md).
88

99
## Backend
1010

firestore/docs/frontend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Frontend
22

3-
The frontend of the Friendly Eats application is an [Angular](https://angular.io/) application.
3+
The frontend of the Friendly Eats application is an [Angular](https://angular.dev/) application.
44

55
## Commands
66

firestore/docs/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The application is built with the following technologies:
2020

2121
* **Language**: [TypeScript](https://www.typescriptlang.org/) - The primary programming language for the application.
2222
* **Frontend**:
23-
* [Angular](https://angular.io/) - A popular web application framework. Please note that this project currently uses an older version of Angular, while the Firebase integrations are more recent.
24-
* [Angular Material](https://material.angular.io/) - UI component library for Angular.
23+
* [Angular](https://angular.dev/) - A popular web application framework. Please note that this project currently uses an older version of Angular, while the Firebase integrations are more recent.
24+
* [Angular Material](https://material.angular.dev/) - UI component library for Angular.
2525
* **Backend**: [Firebase Functions](https://firebase.google.com/docs/functions) - Serverless functions to extend Firebase services.
2626
* **Database**: [Firestore](https://firebase.google.com/docs/firestore) - A flexible, scalable NoSQL cloud database.
2727
* **Authentication**: [Firebase Authentication](https://firebase.google.com/docs/auth) - A service for managing user authentication.

firestore/src/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
Router-Outlet is an Angular directive to from the `Router` Library that
2020
is used to insert the component matched by routes (defined in
2121
app-routing.module.ts) to be displayed on the screen. See the Angular
22-
Router docs (https://angular.io/guide/router) for more info.
22+
Router docs (https://angular.dev/) for more info.
2323
-->
2424
<router-outlet></router-outlet>

firestore/src/app/homepage/hompage.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import { Restaurant } from "types/restaurant";
4343
* methods had been written directly into the`homepage.component.ts` file.
4444
*
4545
* For more information about dependency injection and unit testing in Angular
46-
* visit the Angular docs: https://angular.io/guide/dependency-injection
46+
* visit the Angular docs: https://angular.dev/
4747
*/
4848

4949
@Injectable()

firestore/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
1+
/* To learn more about this file see: https://angular.dev/. */
22
{
33
"extends": "./tsconfig.json",
44
"compilerOptions": {

firestore/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
1+
/* To learn more about this file see: https://angular.dev/ */
22
{
33
"compileOnSave": false,
44
"compilerOptions": {

firestore/tsconfig.spec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
1+
/* To learn more about this file see: https://angular.dev/. */
22
{
33
"extends": "./tsconfig.json",
44
"compilerOptions": {

0 commit comments

Comments
 (0)