From b34be60dcecef56be1e4340de6a990fe4dea4cd5 Mon Sep 17 00:00:00 2001 From: Yoom Lam Date: Mon, 22 Jan 2024 14:03:34 -0600 Subject: [PATCH] Fix buggy md syntax in technical-overview.md (#221) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Ticket Resolves linter complaint: ``` ERROR: 1 dead links found! [✖] alembic-src → Status: 400 ``` ## Changes Use square brackets, not parentheses. ## Context for reviewers > Testing instructions, background context, more in-depth details of the implementation, and anything else you'd like to call out or ask reviewers. ## Testing The markdown linter should not cause this error. --- docs/app/technical-overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/app/technical-overview.md b/docs/app/technical-overview.md index 1851e86..592a7b8 100644 --- a/docs/app/technical-overview.md +++ b/docs/app/technical-overview.md @@ -19,7 +19,7 @@ generally preferred. - [OpenAPI Specification][oas-docs] - [API Flask][apiflask-home] ([source code][apiflask-src]) - [SQLAlchemy][sqlalchemy-home] ([source code][sqlalchemy-src]) -- [Alembic][alembic-home] ([source code](alembic-src)) +- [Alembic][alembic-home] ([source code][alembic-src]) - [pydantic][pydantic-home] ([source code][pydantic-src]) - [poetry](https://python-poetry.org/docs/) - Python dependency management @@ -57,4 +57,4 @@ function that is run to do the authentication. n/a - Specific user authorization is not yet implemented for this API. ### Database diagram -n/a - Database diagrams are not yet available for this application. \ No newline at end of file +n/a - Database diagrams are not yet available for this application.