Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix authz path #22134

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion x/auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This module is used in the Cosmos Hub.

## Concepts

**Note:** The auth module is different from the [authz module](../modules/authz/).
**Note:** The auth module is different from the [authz module](../authz/).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Link to authz module is incorrect

The updated link ../authz/ does not exist. Please verify and correct the path to the authz module documentation.

🔗 Analysis chain

Link correction looks good, please verify the path.

The update to the authz module link appears to be a correction. However, it's important to ensure that ../authz/ is indeed the correct path within the project structure.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Verify if the authz directory exists at the correct location
if [ -d "../authz" ]; then
    echo "The ../authz/ directory exists, confirming the correctness of the updated link."
else
    echo "Warning: The ../authz/ directory does not exist. Please double-check the correct path for the authz module documentation."
fi

Length of output: 274


The differences are:

Expand Down
Loading