From 706bad50cb5c318e72f0adc15453606f48137248 Mon Sep 17 00:00:00 2001 From: Oscar Levin Date: Tue, 12 Sep 2023 08:52:28 -0600 Subject: [PATCH] Update comment documentation of "site" attribute. --- pretext/project/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pretext/project/__init__.py b/pretext/project/__init__.py index e83c2e12..a6c320ed 100644 --- a/pretext/project/__init__.py +++ b/pretext/project/__init__.py @@ -924,7 +924,7 @@ def validate_path(cls, path: t.Union[Path, str]) -> Path: publication: Path = pxml.attr(default=Path("publication")) # A path, relative to the project directory, prepended to any target's `output_dir`. output_dir: Path = pxml.attr(name="output-dir", default=Path("output")) - # A path prepended to any target's `site`. + # A path to the directory holding a project's landing page(s). site: Path = pxml.attr(default=Path("site")) # A path to stage files for deployment stage: Path = pxml.attr(default=Path("output/stage"))