Skip to content

Commit e47f490

Browse files
committed
Remove italics from description and fix indentation
1 parent dfc0886 commit e47f490

File tree

14 files changed

+46
-46
lines changed

14 files changed

+46
-46
lines changed

compiled_starters/c/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for C solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

compiled_starters/c/app/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ int main() {
55
printf("Logs from your program will appear here!\n");
66

77
// Uncomment this block to pass the first stage
8-
// printf("$ ");
9-
// fflush(stdout);
8+
// printf("$ ");
9+
// fflush(stdout);
1010

1111
// Wait for user input
1212
char input[100];

compiled_starters/go/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Go solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

compiled_starters/python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Python solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

compiled_starters/rust/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Rust solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

solutions/c/01-oo8/code/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for C solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

solutions/c/01-oo8/code/app/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <stdio.h>
22

33
int main() {
4-
printf("$ ");
5-
fflush(stdout);
4+
printf("$ ");
5+
fflush(stdout);
66

77
// Wait for user input
88
char input[100];

solutions/c/01-oo8/diff/app/main.c.diff

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
- printf("Logs from your program will appear here!\n");
77
-
88
- // Uncomment this block to pass the first stage
9-
- // printf("$ ");
10-
- // fflush(stdout);
11-
+ printf("$ ");
12-
+ fflush(stdout);
9+
- // printf("$ ");
10+
- // fflush(stdout);
11+
+ printf("$ ");
12+
+ fflush(stdout);
1313

1414
// Wait for user input
1515
char input[100];

solutions/c/01-oo8/explanation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Study and uncomment the relevant code:
44

55
```c
66
// Uncomment this block to pass the first stage
7-
printf("$ ");
8-
fflush(stdout);
7+
printf("$ ");
8+
fflush(stdout);
99
```
1010
1111
Push your changes to pass the first stage:

solutions/go/01-oo8/code/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This is a starting point for Go solutions to the
44
["Build Your Own Shell" Challenge](https://app.codecrafters.io/courses/shell/overview).
55

6-
_In this challenge, you'll build your own POSIX compliant shell that's capable
7-
of interpreting shell commands, running external programs and builtin commands
8-
like cd, pwd, echo and more. Along the way, you'll learn about shell command
9-
parsing, REPLs, builtin commands, and more._
6+
In this challenge, you'll build your own POSIX compliant shell that's capable of
7+
interpreting shell commands, running external programs and builtin commands like
8+
cd, pwd, echo and more. Along the way, you'll learn about shell command parsing,
9+
REPLs, builtin commands, and more.
1010

1111
**Note**: If you're viewing this repo on GitHub, head over to
1212
[codecrafters.io](https://codecrafters.io) to try the challenge.

0 commit comments

Comments
 (0)