Skip to content

Commit 5971e2f

Browse files
fix: correct typos in documentation and Justfile (#6686)
Signed-off-by: Bodhi Silberling <bodhirussellsilberling@yahoo.com>
1 parent d58ed85 commit 5971e2f

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Justfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ release-notes old:
333333
#!/usr/bin/env bash
334334
git log --pretty=format:"- %s" {{ old }}..v$(just get-tag-version)
335335

336-
### s = file seperator based on OS
336+
### s = file separator based on OS
337337
s := if os() == "windows" { "\\" } else { "/" }
338338

339339
### testing/debugging
@@ -372,14 +372,14 @@ win-app-deps:
372372
cd ui{{s}}desktop ; npm install
373373

374374
### Windows copy {release|debug} files to ui\desktop\src\bin
375-
### s = os depenent file seperator
375+
### s = os dependent file separator
376376
### profile = release or debug
377377
win-copy-win profile:
378378
copy target{{s}}{{profile}}{{s}}*.exe ui{{s}}desktop{{s}}src{{s}}bin
379379
copy target{{s}}{{profile}}{{s}}*.dll ui{{s}}desktop{{s}}src{{s}}bin
380380

381381
### "Other" copy {release|debug} files to ui/desktop/src/bin
382-
### s = os depenent file seperator
382+
### s = os dependent file separator
383383
### profile = release or debug
384384
win-copy-oth profile:
385385
find target{{s}}{{profile}}{{s}} -maxdepth 1 -type f -executable -print -exec cp {} ui{{s}}desktop{{s}}src{{s}}bin \;
@@ -391,7 +391,7 @@ win-app-copy profile="release":
391391

392392
### Only copy binaries, npm install, start-gui
393393
### profile = release or debug
394-
### s = os depenent file seperator
394+
### s = os dependent file separator
395395
win-app-run profile:
396396
just win-app-copy {{profile}}
397397
just win-app-deps

documentation/docs/tutorials/cicd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ This is just one example of what's possible. Feel free to modify your GitHub Act
232232

233233
## Security Considerations
234234

235-
When running goose in a CI/CD enviroment, keep these security practices in mind:
235+
When running goose in a CI/CD environment, keep these security practices in mind:
236236

237237
1. **Secret Management**
238238
- Store your sensitive credentials (like API keys) as GitHub Secrets.

0 commit comments

Comments
 (0)