diff --git a/README.MD b/README.MD index 66cebdf..9597788 100644 --- a/README.MD +++ b/README.MD @@ -11,7 +11,7 @@ Channels are popular in golang for sharing data. In the golang training i took, ### Organisation of files | File name | Description | | -----| ---| -| main.go | This is startup file. The `init()` , which by defualt gets called first before `main()` initializes the necessary configuration such as the server host,port and log files . The `main()` creates a `chat.NewServer` type and starts a `go routine` to listen on the server. Apart from it, the `main()` also create a webserver and route handler to load the inital page of the application | +| main.go | This is startup file. The `init()` , which by default gets called first before `main()` initializes the necessary configuration such as the server host,port and log files . The `main()` creates a `chat.NewServer` type and starts a `go routine` to listen on the server. Apart from it, the `main()` also create a webserver and route handler to load the inital page of the application | | server.go | The server file has `Server` struct defined with essential fields. The `Server` glues everything together. `server.go` has different functions defined for perfoming activities in a chat room such as