Skip to content
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
3 changes: 2 additions & 1 deletion docs/user/governance/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,5 @@ You can learn more about Dash Governance in the following sections:

understanding.rst
using.rst
eight-steps.rst
eight-steps.rstb
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

# First, let's see the actual content around line 52 in the file
sed -n '45,55p' docs/user/governance/index.rst

Repository: dashpay/docs

Length of output: 209


🏁 Script executed:

# Search for both file variants in the governance directory
fd -t f "eight-steps" docs/user/governance/

Repository: dashpay/docs

Length of output: 92


🏁 Script executed:

# Also search more broadly in case the file is elsewhere
fd -t f "eight-steps\.(rst|rstb)" docs/

Repository: dashpay/docs

Length of output: 92


Fix invalid file extension to restore documentation build.

Line 52 references eight-steps.rstb, but the actual file is eight-steps.rst. Sphinx cannot locate eight-steps.rstb and will fail during the build process.

Fix
-   eight-steps.rstb
+   eight-steps.rst
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
eight-steps.rstb
eight-steps.rst
🤖 Prompt for AI Agents
In `@docs/user/governance/index.rst` at line 52, Replace the incorrect reference
"eight-steps.rstb" in docs/user/governance/index.rst with the correct file name
"eight-steps.rst" so Sphinx can find the page; locate the string
"eight-steps.rstb" in index.rst and update it to "eight-steps.rst" (no other
changes needed).