Skip to content

Commit 8490db2

Browse files
authored
Merge pull request #307 from posit-dev/docs-site-restructure
docs: revise website navigation
2 parents 0b47c1b + 35841c5 commit 8490db2

32 files changed

+385
-266
lines changed

docs/_quarto.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ website:
4343
bread-crumbs: false
4444
favicon: assets/fav-logo.png
4545
site-url: https://posit-dev.github.io/pointblank/
46+
repo-url: https://github.com/posit-dev/pointblank
4647
description: "Find out if your data is what you think it is"
4748
navbar:
49+
logo: assets/pointblank_logo.svg
50+
title: false
4851
left:
49-
- text: User Guide
50-
file: user-guide/index.qmd
5152
- text: Examples
5253
file: demos/index.qmd
5354
- href: reference/index.qmd
@@ -64,7 +65,9 @@ website:
6465
contents:
6566
- section: "Getting Started"
6667
contents:
67-
- user-guide/index.qmd
68+
- text: "Welcome to Pointblank"
69+
href: index.qmd
70+
- user-guide/quickstart.qmd
6871
- user-guide/installation.qmd
6972
- section: "Validation Plan"
7073
contents:

docs/blog/validation-libs-2025/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ class UserSchema(dy.Schema):
548548
549549
# Use @dy.rule() for age range validation
550550
@dy.rule()
551-
def age_in_range() -> pl.Expr:
551+
def age_in_range(cls) -> pl.Expr:
552552
return pl.col("age").is_between(18, 80, closed="both")
553553
554554
# Validate using the schema

0 commit comments

Comments
 (0)