Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- [Requirements](./design/analysis/requirements.md)
- [Development](./development/intro.md)
- [Glossary](./development/glossary.md)
- [Decision Log](./development/decision_log.md)
- [Release process](./development/release_process.md)
- [Testing](./development/testing.md)
- [Talks](./talks.md)
Expand Down
12 changes: 12 additions & 0 deletions src/development/decision_log.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Decision Log

This document contains a log of decisions made during the development within the
rustic ecosystem.

## 2024-09-16: Naming Conventions for Types

We will use the following naming conventions for the following types:

- Singular: `Type`, exactly one value, e.g. `path: Path`
- Plural: `Vec<Type>`, an array that may contain one or more values, e.g.
`paths: Vec<Path>`