diff --git a/README.md b/README.md
index f05b92a8b9695dba5bf341fb030990beadb969c2..128933c7296e844d0c7979cbe688f08bf05ec668 100644
--- a/README.md
+++ b/README.md
@@ -250,7 +250,7 @@ These are the available fields with their respective default values:
 The grafana definition is located in a different project (https://github.com/brancz/kubernetes-grafana), but needed configuration can be customized from the same top level `_config` field. For example to allow anonymous access to grafana, add the following `_config` section:
 ```
       grafana+:: {
-        config: {
+        config: { // http://docs.grafana.org/installation/configuration/
           sections: {
             "auth.anonymous": {enabled: true},
           },
diff --git a/examples/minikube.jsonnet b/examples/minikube.jsonnet
index e14407983ba5723c921171195bd48ecd6e5dfb5a..850514fdc5d0415044a071f146d967b60bba441b 100644
--- a/examples/minikube.jsonnet
+++ b/examples/minikube.jsonnet
@@ -10,7 +10,7 @@ local kp =
         config: importstr 'alertmanager-config.yaml',
       },
       grafana+:: {
-        config: {
+        config: { // http://docs.grafana.org/installation/configuration/
           sections: {
             // Do not require grafana users to login/authenticate
             "auth.anonymous": {enabled: true},