Skip to content

Commit 285d640

Browse files
committed
fix mkdocs warning
1 parent ee086f4 commit 285d640

File tree

16 files changed

+20
-200
lines changed

16 files changed

+20
-200
lines changed

.gitignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,4 @@ fabric.properties
8383
# Android studio 3.1+ serialized cache file
8484
.idea/caches/build_file_checksums.ser
8585

86-
# Claude checking py
87-
check_images.py
88-
update_image_paths.py
89-
move_images.py
90-
analyze_image_usage.py
91-
check_links.py
92-
check_active_docs.py
86+
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/2-getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Best suited for quick exploration before moving to structured validation using D
3535

3636
To compare changes, Recce needs a baseline. This guide explains the concept of Diff in Recce and how it fits into data validation workflows. Setup steps vary by environment, so this guide focuses on the core ideas rather than copy-paste instructions.
3737

38-
For a concrete example, refer to the [5-minute Jaffle Shop tutorial](./get-started-jaffle-shop/).
38+
For a concrete example, refer to the [5-minute Jaffle Shop tutorial](./get-started-jaffle-shop.md).
3939

4040
To configure a comparison in Recce, two components are required:
4141

docs/3-visualized-change/lineage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ In the top control bar, you can change the rule to filter the nodes:
3434
- **Changed Models:** Modified nodes and their downstream + 1st degree of their parents.
3535
- **All:** Show all nodes.
3636
1. **Package:** Filter by dbt package names.
37-
1. **Select:** Select nodes by [node selection](./node-selection.md).
38-
1. **Exclude:** Exclude nodes by [node selection](./node-selection.md).
37+
1. **Select:** Select nodes by [node selection](./multi-models.md).
38+
1. **Exclude:** Exclude nodes by [node selection](./multi-models.md).
3939

4040
### Select Nodes
4141

42-
Click a node to select it, or click the **Select nodes** button in the top-right corner to select multiple nodes for further operations. For detail, see the [Multi Nodes Selections](#multi-nodes-selection) section
42+
Click a node to select it, or click the **Select nodes** button in the top-right corner to select multiple nodes for further operations. For detail, see the [Multi Nodes Selections](./multi-models.md) section
4343

4444
### Row Count Diff
4545

@@ -138,7 +138,7 @@ From any model's node details panel, you can view the exact code changes that we
138138
- How transformations changed
139139
- Why data differences might be occurring
140140

141-
Learn more about viewing and analyzing code changes in the [Code Diff guide](code-diff.md).
141+
Learn more about viewing and analyzing code changes in the [Code Diff guide](code-change.md).
142142

143143

144144
## Node Details

docs/3-visualized-change/multi-models.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ An example of selecting multiple models to perform a multi-node Value Diff:
6161

6262
From the Lineage DAG, click the Actions dropdown menu and click Lineage Diff or Schema Diff from the Add to Checklist section. This will add:
6363

64-
- Lineage Diff: The current Lineage view, dependent on your <a href="#select-models">model selection</a> options.
65-
- Schema Diff: A diff of all models if none are selected, or specific <a href="#multi-node-selection">selected models</a>.
64+
- Lineage Diff: The current Lineage view, dependent on your [model selection](./lineage.md#select-nodes) options.
65+
- Schema Diff: A diff of all models if none are selected, or [specific selected models](#multi-models-selection).
6666

6767
<figure markdown>
6868
![Add a Lineage Diff Check or Schema Check via the Actions dropdown menu](../assets/images/3-visualized-change/actions-dropdown.png){: .shadow}
@@ -71,7 +71,7 @@ From the Lineage DAG, click the Actions dropdown menu and click Lineage Diff or
7171

7272

7373

74-
Recce supports dbt [node selection](https://docs.getdbt.com/reference/node-selection/syntax) in the [lineage diff](./lineage.md#lineage-diff). This enables you to target specific resources with data checks by selecting or excluding models.
74+
Recce supports dbt [node selection](https://docs.getdbt.com/reference/node-selection/syntax) in the [lineage diff](./lineage.md). This enables you to target specific resources with data checks by selecting or excluding models.
7575

7676
## Supported syntax and methods
7777

docs/4-downstream-impacts/impact-radius.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Two core features power the impact radius analysis:
124124
- **Non-breaking changes**: Do not impact any downstream **models**
125125
- **Partial breaking changes**: Impact only downstream **models or columns** that depend on the modified columns
126126

127-
**[Column-level lineage](./column-level-lineage.md)** analyzes your model's SQL to identify column-level dependencies:
127+
**[Column-level lineage](../3-visualized-change/column-level-lineage.md)** analyzes your model's SQL to identify column-level dependencies:
128128

129129
- Which upstream **columns** are used as filters or grouping keys. If those upstream **columns** change, the current **model** is impacted.
130130
- Which upstream **columns** a specific column references. If those upstream **columns** change, the specific **column** is impacted.

docs/5-data-diffing/query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ However, the limitation is that we cannot find the mismatched rows in a big quer
6060

6161
When primary keys are given, it can perform a query diff in the warehouse. It will only display changed, added, or removed rows. Meaning, if only one record is different among a million, that specific record will be visible. Thus reducing the amount of data transferred.
6262

63-
Another similar feature is [Value Diff](lineage.md#value-diff). Value diff is based on a chosen model, so you dont need to write SQL to operate it, though it naturally offers less flexibility. Additionally, value diff can show a summary or actual diff records, whereas query diff only shows the actual diff records.
63+
Another similar feature is [Value Diff](value-diff.md). Value diff is based on a chosen model, so you don't need to write SQL to operate it, though it naturally offers less flexibility. Additionally, value diff can show a summary or actual diff records, whereas query diff only shows the actual diff records.

docs/7-cicd/scenario-pr-review.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Another core feature of Recce is its various checks, which allow us to compare k
3636

3737
## Share the Recce File
3838

39-
If you want the reviewer to access your environment, you can also attach the [Recce state file](../features/state-file.md) to the PR comment.
39+
If you want the reviewer to access your environment, you can also attach the [Recce state file](../8-technical-concepts/state-file.md) to the PR comment.
4040

4141
**As a Submitter**
4242

0 commit comments

Comments
 (0)