architecture-samples icon indicating copy to clipboard operation
architecture-samples copied to clipboard

"Usecases" link is not linked properly in the README.md

Open sumansahoo1 opened this issue 3 years ago • 1 comments

Screenshot from 2022-06-22 19-38-55 Screenshot from 2022-06-22 19-39-11

sumansahoo1 avatar Jun 22 '22 14:06 sumansahoo1

Solve This Error: To fix this, you need to change the URL in the README.md to correctly point to the usecases directory.

Original (Broken) Link in README.md:

Markdown

usecasesREADME.md:

You should change blob to tree in the URL to indicate you are linking to a directory.

Markdown

usecases Explanation: blob: Used for linking directly to a file in a specific branch/commit.

tree: Used for linking to a directory (folder) in a specific branch/commit, allowing you to browse its contents.

By changing blob to tree, the link will now correctly navigate to the usecases directory within the main branch of the android/architecture-samples repository on GitHub.

Steps to fix:

Open the README.md file in your text editor.

Find the line containing the broken "usecases" link.

Modify the URL within the parentheses () from .../blob/main/usecases to .../tree/main/usecases.

Save the README.md file.

If this is a Git repository, commit the change and push it to your remote (e.g., GitHub) for the fix to be visible online.

VaradGupta23 avatar Jul 16 '25 04:07 VaradGupta23