Skip to content

Commit

Permalink
Merge v1.0.1
Browse files Browse the repository at this point in the history
v1.0.1
  • Loading branch information
umut-sahin committed Aug 15, 2019
2 parents b2b1bff + a071c9f commit b47b947
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.0.1 / 16-08-2019
==================

- Various typos in READMEs are fixed. ([#2](https://github.com/umut-sahin/javascript-examples/issues/2))

1.0.0 / 15-07-2019
==================

Expand Down
2 changes: 1 addition & 1 deletion brainfuck-interpreter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ We did not call the **load** by hand, though.
The **constructor** of the **Interpreter** class handled that for us.
If the syntax of the script file is correct, no exceptions are thrown.

If everything went ok so far, we are now ready to interpret the parsed script.
If everything went OK so far, we are now ready to interpret the parsed script.
We tell the interpreter to start interpreting the script by calling the **execute** method.
This method will go through the instructions one by one take the required actions.
If there are no memory violations, no exceptions are raised, and we are done.
Expand Down
2 changes: 1 addition & 1 deletion command-line-arguments/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<h1>command-line-arguments</h1>
A simple program which demonstrates how to iterate over the arguments which are passed during the program invocation
A simple program, which demonstrates how to iterate over the arguments, which are passed during the program invocation
</div>

## Authors
Expand Down
4 changes: 2 additions & 2 deletions http-hello-world-server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<h1>http-hello-world-server</h1>
A simple program which demonstrates how to create the most basic <a href="https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol">HTTP</a> server which responds the same way to every request whatsoever
A simple program, which demonstrates how to create the most basic <a href="https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol">HTTP</a> server which responds the same way to every request whatsoever
</div>

## Authors
Expand All @@ -15,7 +15,7 @@ None

This program uses the [**createServer**] function from the built-in [**http**] module to create an [HTTP] server, which listens to port **8080**.

Then for each incoming request, it responses with the text **"Hello World!"**.
Then for each incoming request, the server responds with the text **"Hello World!"**.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "javascript-examples",
"version": "1.0.0",
"version": "1.0.1",
"description": "Collection of examples in JavaScript to show how to get things done in an idiomatic way",
"license": "MIT",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion read-from-console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<h1>read-from-console</h1>
A simple program which demonstrates how to read from the standard input
A simple program, which demonstrates how to read from the standard input
</div>

## Authors
Expand Down
2 changes: 1 addition & 1 deletion tcp-echo-server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<h1>tcp-echo-server</h1>
A simple program which demonstrates how to create the most basic <a href="https://en.wikipedia.org/wiki/Transmission_Control_Protocol">TCP</a> server which echoes back what the client writes after successfully connecting
A simple program, which demonstrates how to create the most basic <a href="https://en.wikipedia.org/wiki/Transmission_Control_Protocol">TCP</a> server which echoes back what the client writes after successfully connecting
</div>

## Authors
Expand Down
2 changes: 1 addition & 1 deletion timers/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<h1>timers</h1>
A simple program which demonstrates how to use timers to execute a function indefinitely but with a delay
A simple program, which demonstrates how to use timers to execute a function indefinitely but with a delay
</div>

## Authors
Expand Down
2 changes: 1 addition & 1 deletion write-to-console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<h1>write-to-console</h1>
A simple program which demonstrates how to write to the standard output
A simple program, which demonstrates how to write to the standard output
</div>

## Authors
Expand Down

0 comments on commit b47b947

Please sign in to comment.