Skip to content

Commit

Permalink
Grammar and Style Improvements (#655)
Browse files Browse the repository at this point in the history
* Update page.md

* Update page.md

* Update page.md
  • Loading branch information
donatik27 authored Nov 28, 2024
1 parent 07a6d5d commit ec23a33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/docs/src/app/docs/api/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ are protected with a shared secret that is used for digitally signing JSON Web T
This is what the `SECRET_KEY` environment variable is for.

{% callout title="Swagger UI" %}
[Explorer the API documentation.](https://api.blobscan.com/)
[Explore the API documentation.](https://api.blobscan.com/)
{% /callout %}
2 changes: 1 addition & 1 deletion apps/docs/src/app/docs/codebase-overview/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Here you can find all the shared packages used by the apps:
| Package | Description |
| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`@blobscan/api`](https://github.com/Blobscan/blobscan/tree/main/packages/api) | tRPC routers and procedures used by the web app and the REST API |
| [`@blobscan/@blobscan/blob-propagator`](https://github.com/Blobscan/blobscan/tree/main/packages/blob-propagator) | Mechanism for propagating blob data across various storage systems through [bullmq](https://docs.bullmq.io/) sandboxed workers. |
| [`@blobscan/blob-propagator`](https://github.com/Blobscan/blobscan/tree/main/packages/blob-propagator) | Mechanism for propagating blob data across various storage systems through [bullmq](https://docs.bullmq.io/) sandboxed workers. |
| [`@blobscan/blob-storage-manager`](https://github.com/Blobscan/blobscan/tree/main/packages/blob-storage-manager) | Orchestrates the storage/retrieval of blobs in/from different storage providers. Currently it supports [Google Cloud Storage](https://cloud.google.com/storage), [Swarm](https://www.ethswarm.org), PostgreSQL database and filesystem. |
| [`@blobscan/dayjs`](https://github.com/Blobscan/blobscan/tree/main/packages/dayjs) |  Extended [Day.js](https://day.js.org/) with plugins. |
| [`@blobscan/db`](https://github.com/Blobscan/blobscan/tree/main/packages/db) | Prisma schema and a Prisma client with [extensions](https://www.prisma.io/docs/concepts/components/prisma-client/client-extensions) containing custom methods queries. |
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/app/docs/testing/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ We rely on testing to ensure our solutions meet user expectations.
- We maintain clarity about the requirements and expected outcomes.
- The code remains flexible, allowing developers to refactor and optimize without constant test breakages.

**Avoid Testing Internals:** We generally steer clear from testing private or internal functions directly. This aligns with our behavior-driven approach. However, complex internal logic may sometimes warrant its own set of tests.
**Avoid Testing Internals:** We generally steer clear of testing private or internal functions directly. This aligns with our behavior-driven approach. However, complex internal logic may sometimes warrant its own set of tests.

## Testing Tools

Expand Down

0 comments on commit ec23a33

Please sign in to comment.