Skip to content

Commit aa0e47a

Browse files
ddelapazjameswpm
authored andcommitted
Update 03.2.md
Fixed typo and added ROR Definition.
1 parent 16088e6 commit aa0e47a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

en/03.2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ Figure 3.8 Server printed information
5050

5151
As you can see, we only need to call two functions in order to build a simple web server.
5252

53-
If you are working with PHP, you're probably asking whether or not we need something like Nginx or Apache. The answer is we no, since Go listens to the TCP port by itself, and the function `sayhelloName` is the logic function just like a controller in PHP.
53+
If you are working with PHP, you're probably asking whether or not we need something like Nginx or Apache. The answer is we don't, since Go listens to the TCP port by itself, and the function `sayhelloName` is the logic function just like a controller in PHP.
5454

5555
If you are working with Python you should know tornado, and the above example is very similar to that.
5656

57-
If you are working with Ruby, you may notice it is like script/server in ROR.
57+
If you are working with Ruby, you may notice it is like script/server in ROR (Ruby on Rails).
5858

5959
We used two simple functions to setup a simple web server in this section, and this simple server already has the capacity for high concurrency operations. We will talk about how to utilize this in the next two sections.
6060

0 commit comments

Comments
 (0)