diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..616e38d Binary files /dev/null and b/.DS_Store differ diff --git a/manuscript/1.1WebProgramBasics.md b/manuscript/1.1WebProgramBasics.md index 7c5718a..d2b2c49 100644 --- a/manuscript/1.1WebProgramBasics.md +++ b/manuscript/1.1WebProgramBasics.md @@ -20,7 +20,7 @@ The HTTP Response contains the status code of the request. Following are the sta - 4xx Client Error - 5xx Server Error -Writing a server might sound like very difficult, but it is not. To the core, a server is just like any other program you write. It takes an input, transforms it and gives an output. The input is a HTTP Request, the transformation happens when it reads data from the database and does processing over the HTTP Request, the output is the HTTP Response. +Writing a server might sound very difficult, but it is not. At the core, a server is just like any other program you write. It takes an input, transforms it and gives an output. The input is a HTTP Request, the transformation happens when it reads data from the database and does processing over the HTTP Request, the output is the HTTP Response. The browser just abstracts the users from sending and receiving the HTTP request/responses. Everything that a browser does can be done programmatically,