Skip to content

Commit f00d064

Browse files
#545 fix table spacing
1 parent 505928f commit f00d064

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

vignettes/programming_strategy.Rmd

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -577,18 +577,18 @@ All empty strings that originate like this need to be converted to proper R miss
577577

578578
The table below describes the key directories and files in the repository. Understanding this layout helps contributors know where to find and where to place code.
579579

580-
| Directory / File | Purpose |
581-
|-----------------------|---------|
582-
| `R/` | R source files containing package functions. File names reflect their contents (see [File Structuring](#file-structuring) below). |
583-
| `man/` | Auto-generated Rd documentation files. **Do not edit manually.** Run `devtools::document()` to regenerate. |
584-
| `tests/testthat/` | Unit test scripts. Each file follows the naming convention `test-<source_file>.R`. |
585-
| `vignettes/` | Developer-facing guidance vignettes (and any user-facing articles). |
586-
| `inst/lintr/` | Linting helpers/configuration used by `.lintr.R` (e.g., sourced via `system.file(...)`). |
587-
| `inst/templates/` | ADaM R script templates made available to users. |
588-
| `NAMESPACE` | Auto-generated export/import declarations. **Do not edit manually.** Run `devtools::document()`. |
589-
| `NEWS.md` | Package changelog. Updated with every user-facing change per PR. |
590-
| `DESCRIPTION` | Package metadata and dependency declarations (`Imports`, `Suggests`). |
591-
| `_pkgdown.yml` | Configuration for the package website built by `{pkgdown}`. |
580+
| Directory or File | Purpose |
581+
| :-- | :---- |
582+
| `R/` | R source files containing package functions. File names reflect their contents (see [File Structuring](#file-structuring) below). |
583+
| `man/` | Auto-generated Rd documentation files. **Do not edit manually.** Run `devtools::document()` to regenerate. |
584+
| `tests/testthat/` | Unit test scripts. Each file follows the naming convention `test-<source_file>.R`. |
585+
| `vignettes/` | Developer-facing guidance vignettes (and any user-facing articles). |
586+
| `inst/lintr/` | Linting helpers/configuration used by `.lintr.R` (e.g., sourced via `system.file(...)`). |
587+
| `inst/templates/` | ADaM R script templates made available to users. |
588+
| `NAMESPACE` | Auto-generated export/import declarations. **Do not edit manually.** Run `devtools::document()`. |
589+
| `NEWS.md` | Package changelog. Updated with every user-facing change per PR. |
590+
| `DESCRIPTION` | Package metadata and dependency declarations (`Imports`, `Suggests`). |
591+
| `_pkgdown.yml` | Configuration for the package website built by `{pkgdown}`. |
592592

593593
# File Structuring
594594

0 commit comments

Comments
 (0)