Fix broken link (#16382)

This commit is contained in:
Michael Panitz (at Cascadia College)
2022-02-17 11:43:47 -08:00
committed by GitHub
parent 3ede2a6467
commit 9fff2b535f

View File

@@ -3,6 +3,6 @@
## Code organization
The PowerToys are split into DLLs for each PowerToy module ([`modules`](/src/modules) folder), and an executable ([`runner`](/src/runner) folder) that loads and manages those DLLs.
The settings window is a separate executable, contained in [`settings`](/src/settings) folder. It utilizes a WebView to display an HTML-based settings window (contained in [`settings-web`](/src/settings-web) folder).
The settings window is a separate executable, contained in [`settings-ui`](/src/settings-ui) folder. It utilizes a WebView to display an HTML-based settings window.
The [`common`](/src/common) contains code for a static library with helper functions, used by both the runner and the PowerToys modules.