Skip to content

Commit f9bad63

Browse files
committed
[misc] Why don't we automatically fix this?
It pisses me off.
1 parent 6153ad0 commit f9bad63

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
## Checklist
2020
- [ ] My code adheres to the coding and style guidelines of the project.
2121
- [ ] I have commented my code, particularly in hard-to-understand areas.
22-
- [ ] I have made corresponding changes to the documentation.
22+
- [ ] I have made corresponding changes to the documentation.

.github/workflows/label-pr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
script: |
1919
const prBody = context.payload.pull_request.body || '';
2020
const labelsToAdd = [];
21-
21+
2222
if (/\[x\]\s*New feature/i.test(prBody)) {
2323
labelsToAdd.push('new feature');
2424
}
@@ -34,12 +34,12 @@ jobs:
3434
if (/\[x\]\s*UI\/UX improvement/i.test(prBody)) {
3535
labelsToAdd.push('ui update');
3636
}
37-
37+
3838
if (labelsToAdd.length > 0) {
3939
await github.rest.issues.addLabels({
4040
owner: context.repo.owner,
4141
repo: context.repo.repo,
4242
issue_number: context.payload.pull_request.number,
4343
labels: labelsToAdd
4444
});
45-
}
45+
}

docs/content/dev/architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,5 +546,5 @@ Outputs `winutil.ps1` in the root directory.
546546

547547
---
548548

549-
**Last Updated**: January 2026
550-
**Maintainers**: Chris Titus Tech and contributors
549+
**Last Updated**: January 2026
550+
**Maintainers**: Chris Titus Tech and contributors

docs/content/dev/tweaks/Essential-Tweaks/Hibernation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"powercfg.exe /hibernate on"
3131
],
3232
```
33-
33+
3434
## Registry Changes
3535
Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.
3636

docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
Write-Host \"Uninstalling OneDrive...\"
1515
Start-Process 'C:\\Windows\\System32\\OneDriveSetup.exe' -ArgumentList '/uninstall' -Wait
16-
16+
1717
# Some of OneDrive files use explorer, and OneDrive uses FileCoAuth
1818
Write-Host \"Removing leftover OneDrive Files...\"
1919
Stop-Process -Name FileCoAuth,Explorer

docs/content/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,5 +297,5 @@ Can't find your answer? Try these resources:
297297

298298
---
299299

300-
**Last Updated**: January 2026
300+
**Last Updated**: January 2026
301301
**Found this helpful?** Consider starring the project on [GitHub](https://github.com/ChrisTitusTech/winutil)!

docs/content/userguide/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Apply optimizations for performance, privacy, and usability. Choose from preset
5454

5555
Quick fixes for common Windows problems:
5656
- Reset network settings
57-
- Fix Windows Update issues
57+
- Fix Windows Update issues
5858
- Repair system files
5959
- Access legacy Windows panels
6060

@@ -152,7 +152,7 @@ This User Guide covers everything you need to know:
152152

153153
1. **[Getting Started](getting-started/)** - Installation, first run, basic usage
154154
2. **[Application Store](store/)** - Installing software, using presets
155-
3. **[Tweaks](tweaks/)** - System optimizations and customizations
155+
3. **[Tweaks](tweaks/)** - System optimizations and customizations
156156
4. **[Features & Fixes](features/)** - Troubleshooting tools and utilities
157157
5. **[MicroWin](microwin/)** - Creating custom Windows ISOs
158158
6. **[Updates](updates/)** - Managing Windows Update behavior

0 commit comments

Comments
 (0)