Skip to content

Commit 34738c8

Browse files
committed
♻️ refactor(cli): remove unnecessary blank lines in uninstall command documentation
1 parent 6edfbaf commit 34738c8

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ Here's a comprehensive example showing all available fields:
422422
"MyLibrary.dproj"
423423
]
424424
```
425-
425+
426426
**Note:** If not specified, Boss won't compile the package but will still manage dependencies.
427427

428428
#### Dependencies
@@ -435,7 +435,7 @@ Here's a comprehensive example showing all available fields:
435435
"jhonson": "*"
436436
}
437437
```
438-
438+
439439
Supported version formats:
440440
- Exact version: `"1.0.0"`
441441
- Caret (minor updates): `"^1.0.0"` (allows 1.x.x, but not 2.x.x)
@@ -454,7 +454,7 @@ Here's a comprehensive example showing all available fields:
454454
"deploy": "xcopy /s /y bin\\*.exe deploy\\"
455455
}
456456
```
457-
457+
458458
Execute with:
459459
```sh
460460
boss run build
@@ -470,7 +470,7 @@ Here's a comprehensive example showing all available fields:
470470
"platforms": ["Win32", "Win64", "Linux64"]
471471
}
472472
```
473-
473+
474474
- `compiler`: Minimum compiler version
475475
- `platforms`: Supported target platforms
476476

@@ -485,7 +485,7 @@ Here's a comprehensive example showing all available fields:
485485
"strict": true
486486
}
487487
```
488-
488+
489489
- `compiler`: Required compiler version
490490
- `platform`: Target platform ("Win32", "Win64", "Linux64", etc.)
491491
- `path`: Explicit path to the compiler (optional)

internal/adapters/primary/cli/uninstall.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func uninstallCmdRegister(root *cobra.Command) {
2727
2828
Uninstall a package without removing it from the boss.json file:
2929
boss uninstall <pkg> --no-save
30-
30+
3131
Select multiple packages to uninstall:
3232
boss uninstall --select`,
3333
Run: func(_ *cobra.Command, args []string) {

0 commit comments

Comments
 (0)