Skip to content

Commit d8108c3

Browse files
committed
fix(docs): clean up README formatting and remove extra newlines
This commit improves the formatting of the README.md file by removing unnecessary blank lines and ensuring consistent spacing. The changes enhance readability without altering the content.
1 parent 9169d95 commit d8108c3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ The dialog library uses native bindings for each platform:
2020
```bash
2121
# Ubuntu/Debian
2222
sudo apt-get install libgtk-3-dev
23-
23+
2424
# Fedora
2525
sudo dnf install gtk3-devel
26-
26+
2727
# Arch Linux
2828
sudo pacman -S gtk3
2929
```
@@ -109,15 +109,15 @@ The confirm command returns exit code 0 if the user clicked "Yes" and exit code
109109
# Ask for confirmation
110110
if dialog confirm "Do you want to continue?"; then
111111
echo "User chose YES"
112-
112+
113113
# Select a file
114114
CONFIG_FILE=$(dialog file --title "Select configuration file")
115115
echo "Selected file: $CONFIG_FILE"
116-
116+
117117
# Select an output directory
118118
OUTPUT_DIR=$(dialog directory --title "Select output directory")
119119
echo "Selected directory: $OUTPUT_DIR"
120-
120+
121121
# Show success message
122122
dialog message "Operation completed successfully"
123123
else
@@ -128,4 +128,4 @@ fi
128128

129129
## License
130130

131-
MIT
131+
MIT

0 commit comments

Comments
 (0)