update readme, fix formatting

This commit is contained in:
Avuluri Venkata Sai Reddy 2023-01-29 23:18:21 +05:30 committed by GitHub
parent 3011efee29
commit 7e2ba16f20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -833,8 +833,8 @@ func (cache *KVCache) Add(key, value string) {
This code is absolutely fine. However, the danger is that our `App` can be initialised incorrectly, without initialising the `Cache` property within. Should the following code be invoked, our application will panic: This code is absolutely fine. However, the danger is that our `App` can be initialised incorrectly, without initialising the `Cache` property within. Should the following code be invoked, our application will panic:
```go ```go
app := App{} app := App{}
app.Cache.Add("panic", "now") app.Cache.Add("panic", "now")
``` ```
The `Cache` property has never been initialised and is therefore a `nil` pointer. Thus, invoking the `Add` method like we did here will cause a panic, with the following message: The `Cache` property has never been initialised and is therefore a `nil` pointer. Thus, invoking the `Add` method like we did here will cause a panic, with the following message: