Skip to content

Commit 82f506d

Browse files
committed
Merge pull request bbatsov#51 from sumbach/patch-3
Replace "IO" with "I/O"
2 parents 10c0ac5 + 92ee395 commit 82f506d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ performance-critical code dealing heavily with primitive types.
881881

882882
### Refs
883883

884-
* Consider wrapping all IO calls with the `io!` macro to avoid nasty
884+
* Consider wrapping all I/O calls with the `io!` macro to avoid nasty
885885
surprises if you accidentally end up calling such code in a
886886
transaction.
887887
* Avoid the use of `ref-set` whenever possible.
@@ -903,7 +903,7 @@ as small as possible.
903903

904904
### Agents
905905

906-
* Use `send` only for actions that are CPU bound and don't block on IO
906+
* Use `send` only for actions that are CPU bound and don't block on I/O
907907
or other threads.
908908
* Use `send-off` for actions that might block, sleep, or otherwise tie
909909
up the thread.

0 commit comments

Comments
 (0)