Skip to content

Commit 67c148b

Browse files
authored
Fixed markdown formatting in readme
1 parent 6d73e83 commit 67c148b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ operations. They can be also atomically modified via `+=` and `-=` operators.
6161
* Declare atomic variables as `private val`. You can use just (public) `val` in nested classes,
6262
but make sure they are not accessed outside of your Kotlin source file.
6363
* Only simple operations on atomic variables _directly_ are supported.
64-
** Do not read references on atomic variables into local variables,
65-
e.g. `top.compareAndSet(...)` is Ok, while `val tmp = top; tmp...` is not.
66-
** Do not leak references on atomic variables in other way (return, pass as params, etc).
64+
* Do not read references on atomic variables into local variables,
65+
e.g. `top.compareAndSet(...)` is Ok, while `val tmp = top; tmp...` is not.
66+
* Do not leak references on atomic variables in other way (return, pass as params, etc).
6767
* Do not introduce complex data flow in parameters to atomic variable operations,
6868
i.e. `top.value = complex_expression` and `top.compareAndSet(cur, complex_expression)` are not supported
6969
(more specifically, `complex_expression` should not have branches in its compiled representation).

0 commit comments

Comments
 (0)