Skip to content

Commit 33621a8

Browse files
BNAndrasErikSchierboomkotp
authored
One sentence per line (#54)
* Remove trailing whitespace * One line per sentence * Update docs/ABOUT.md Co-authored-by: Victor Goff <[email protected]> --------- Co-authored-by: Erik Schierboom <[email protected]> Co-authored-by: Victor Goff <[email protected]>
1 parent c8aa597 commit 33621a8

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

docs/ABOUT.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
# About
22

3-
Batch scripting is a scripting language used primarily for running commands in the Windows Command Prompt (cmd.exe).
4-
It allows users to automate tasks, manage files, and control the system environment through a series of command-line
5-
instructions.
3+
Batch scripting is a scripting language used primarily for running commands in the Windows Command Prompt (cmd.exe).
4+
It allows users to automate tasks, manage files, and control the system environment through a series of command-line instructions.
65

7-
Although Batch scripting is straightforward, it can handle a wide range of tasks, from simple file operations to
8-
more complex automation processes.
6+
Although Batch scripting is straightforward, it can handle a wide range of tasks, from simple file operations to more complex automation processes.
97

10-
Batch files have a .bat or .cmd extension and can be executed directly by the Windows command interpreter.
8+
Batch files have a `.bat` or `.cmd` extension and can be executed directly by the Windows command interpreter.
119

12-
The flexibility of Batch scripting makes it a powerful tool for system administrators, developers, and power users
13-
who need to automate routine tasks or create custom command-line tools.
10+
The flexibility of Batch scripting makes it a powerful tool for system administrators, developers, and power users who need to automate routine tasks or create custom command-line tools.

docs/INSTALLATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ brew install --cask --no-quarantine wine-stable
2525
1. If your system is 64 bit, enable 32 bit architecture (if you haven't already):
2626

2727
```bash
28-
sudo dpkg --add-architecture i386
28+
sudo dpkg --add-architecture i386
2929
```
3030

3131
2. Add the WineHQ repository:
@@ -47,7 +47,7 @@ sudo apt install --install-recommends winehq-stable
4747
1. If your system is 64 bit, enable 32 bit architecture (if you haven't already):
4848

4949
```bash
50-
sudo dpkg --add-architecture i386
50+
sudo dpkg --add-architecture i386
5151
```
5252

5353
2. Add the WineHQ repository:

docs/RESOURCES.md

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

77
## Social media
88

9-
- [StackOverflow ](https://stackoverflow.com/questions/tagged/batch-file) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions.
9+
- [StackOverflow](https://stackoverflow.com/questions/tagged/batch-file) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions.
1010
- [/r/Batch](https://www.reddit.com/r/Batch/) is the Batch subreddit.
1111

1212
## Videos

docs/SNIPPET.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
setlocal enabledelayedexpansion
33

4-
set /p backupDir=Enter backup directory:
4+
set /p backupDir=Enter backup directory:
55
if not exist "!backupDir!" mkdir "!backupDir!"
66
for %%f in (*.txt) do (
77
set timestamp=!date:~-4,4!!date:~-10,2!!date:~-7,2!_!time:~0,2!!time:~3,2!

docs/TESTS.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ call {slug}Test.bat
1010

1111
## Solving the exercise
1212

13-
Solving an exercise means making all its tests pass. When all tests have been pass, you'll have solved the exercise!
13+
Solving an exercise means making all its tests pass.
14+
When all tests have been pass, you'll have solved the exercise!
1415

15-
To help you get started, each exercise comes with a stub implementation file. You can use this file as a starting point for building your solution. Feel free to remove or change this file if you think it is the right thing to do.
16+
To help you get started, each exercise comes with a stub implementation file.
17+
You can use this file as a starting point for building your solution.
18+
Feel free to remove or change this file if you think it is the right thing to do.

0 commit comments

Comments
 (0)