@@ -30,7 +30,7 @@ import cats.effect._
3030import cats .implicits ._
3131import org .typelevel .vault ._
3232
33- // Importing global cats-effect runtime to allow .unsafeRunSync;
33+ // Importing global cats-effect runtime to allow .unsafeRunSync();
3434// In real code you should follow cats-effect advice on obtaining a runtime
3535import cats .effect .unsafe .implicits .global
3636```
@@ -53,7 +53,7 @@ val basicLookup = for {
5353```
5454
5555``` scala mdoc
56- basicLookup.unsafeRunSync
56+ basicLookup.unsafeRunSync()
5757```
5858
5959``` scala mdoc:silent
@@ -73,7 +73,7 @@ val lookupValuesOfDifferentTypes = for {
7373```
7474
7575``` scala mdoc
76- lookupValuesOfDifferentTypes.unsafeRunSync
76+ lookupValuesOfDifferentTypes.unsafeRunSync()
7777```
7878
7979``` scala mdoc:silent
@@ -86,7 +86,7 @@ val emptyLookup = for {
8686```
8787
8888``` scala mdoc
89- emptyLookup.unsafeRunSync
89+ emptyLookup.unsafeRunSync()
9090```
9191
9292``` scala mdoc:silent
@@ -101,7 +101,7 @@ val doubleInsertTakesMostRecent = for {
101101```
102102
103103``` scala mdoc
104- doubleInsertTakesMostRecent.unsafeRunSync
104+ doubleInsertTakesMostRecent.unsafeRunSync()
105105```
106106
107107``` scala mdoc:silent
@@ -116,7 +116,7 @@ val mergedVaultsTakesLatter = for {
116116```
117117
118118``` scala mdoc
119- mergedVaultsTakesLatter.unsafeRunSync
119+ mergedVaultsTakesLatter.unsafeRunSync()
120120```
121121
122122``` scala mdoc:silent
@@ -131,7 +131,7 @@ val deletedKeyIsMissing = for {
131131```
132132
133133``` scala mdoc
134- deletedKeyIsMissing.unsafeRunSync
134+ deletedKeyIsMissing.unsafeRunSync()
135135```
136136
137137We can also interact with a single value ` locker ` instead of the
@@ -147,7 +147,7 @@ val lockerExample = for {
147147```
148148
149149``` scala mdoc
150- lockerExample.unsafeRunSync
150+ lockerExample.unsafeRunSync()
151151```
152152
153153``` scala mdoc:silent
@@ -161,5 +161,5 @@ val wrongLockerExample = for {
161161```
162162
163163``` scala mdoc
164- wrongLockerExample.unsafeRunSync
164+ wrongLockerExample.unsafeRunSync()
165165```
0 commit comments