Skip to content

Commit ce940bb

Browse files
committed
merge
2 parents 54252b3 + e43c006 commit ce940bb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

docs/src/concepts/futures.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ Note how we avoided any word like *"thread"*, but instead opted for "computation
2020

2121
To sum up: Rust gives us the ability to safely abstract over important properties of concurrent programs, their data sharing. It does so in a very lightweight fashion; the language itself only knows about the two markers `Send` and `Sync` and helps us a little by deriving them itself, when possible. The rest is a library concern.
2222

23-
To sum up: Rust gives us the ability to safely abstract over important properties of concurrent programs: their data sharing. It does so in a very lightweight fashion: the language itself only knows about the two markers `Send` and `Sync` and helps us a little by deriving them itself, when possible. The rest is a library concern.
24-
2523
## An easy view of computation
2624

2725
While computation is a subject to write a whole [book](https://computationbook.com/) about, a very simplified view suffices for us:

0 commit comments

Comments
 (0)