From 29f2589e130f8bc9da4f491e43a51559a510b2af Mon Sep 17 00:00:00 2001 From: Geolffrey Mena Date: Fri, 10 Jun 2022 20:57:23 -0600 Subject: [PATCH] Update read_write_lock.md --- synchronization/read_write_lock.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/synchronization/read_write_lock.md b/synchronization/read_write_lock.md index bb75d9f..024d7ec 100644 --- a/synchronization/read_write_lock.md +++ b/synchronization/read_write_lock.md @@ -97,14 +97,14 @@ go func(r *Router){ }(router) // Reading operation -go func(r *Router){ - // ...some logic here - // reading operation 1 - connection := r.Query("192.168.1.1:8080") - //... more code here - // reading operation 2 - otherQuery:= r.Query("192.168.1.1:8081") - // read locks are like counters.. until counter = 0 Write can be acquired -}(router) +// ...some code here + +// reading operation 1 +connection := r.Query("192.168.1.1:8080") + +//... more code here +// reading operation 2 +otherQuery:= r.Query("192.168.1.1:8081") +// read locks are like counters.. until counter = 0 Write can be acquired ```