Adjusted the project structure in the README

This commit is contained in:
2025-07-18 12:28:51 -04:00
parent aabcfc6a9a
commit 84ff23655c

View File

@ -64,6 +64,9 @@ arithmetic via bounded, clamped, and wrapped integer types.
```text
src/
├── main.rs Entry point of the application.
├── menu/ The Menu Applicaiton.
├── badge/ The Badge Application.
├── snake/ The Snake Application.
```
## Getting Started
@ -101,7 +104,7 @@ The [Design Doc][./docs/design.pdf] is generated with pandoc from the markdown
file.
```bash
pandoc ./docs/design.md -o ./docs/design.pdf
pandoc ./docs/design.md -o ./docs/design.pdf
```
### Software Design Doc
@ -110,7 +113,7 @@ The [Software Design Doc][./docs/sdd.pdf] is generated with pandoc from the mark
file.
```bash
pandoc ./docs/sdd.md -o ./docs/sdd.pdf
pandoc ./docs/sdd.md -o ./docs/sdd.pdf
```
### UML
@ -118,7 +121,7 @@ file.
[UML][./docs/uml/] is generated using Plant UML on the \*.puml files.
```bash
plantuml ./docs/uml/*.puml
plantuml ./docs/uml/*.puml
```
---