Browse Source

Minor typo fix in concurrent mode overview. (#2464)

main
Josh Pollock 6 years ago
committed by Alexey Pyltsyn
parent
commit
ba4b45cfd0
  1. 2
      content/docs/concurrent-mode-intro.md

2
content/docs/concurrent-mode-intro.md

@ -71,7 +71,7 @@ React uses a heuristic to decide how "urgent" an update is, and lets you adjust
There is a common theme around Concurrent Mode features. **Its mission is to help integrate the findings from the Human-Computer Interaction research into real UIs.**
For example, research shows that displaing too many intermediate loading states when transitioning between screens makes a transition feel *slower*. This is why Concurrent Mode shows new loading states on a fixed "schedule" to avoid jarring and too frequent updates.
For example, research shows that displaying too many intermediate loading states when transitioning between screens makes a transition feel *slower*. This is why Concurrent Mode shows new loading states on a fixed "schedule" to avoid jarring and too frequent updates.
Similarly, we know from research that interactions like hover and text input need to be handled within a very short period of time, while clicks and page transitions can wait a little longer without feeling laggy. The different "priorities" that Concurrent Mode uses internally roughly correspond to the interaction categories in the human perception research.

Loading…
Cancel
Save