Skip to content

Commit

Permalink
Comment reworded based on feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Nov 21, 2017
1 parent 348ed92 commit 80a7f1e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/elements/dom-repeat.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,12 @@
* fps) to target by throttling the number of instances rendered each
* frame to not exceed the budget for the target frame rate. The
* framerate is effectively the number of `requestAnimationFrame`s that
* it tries to allow to actually fire in a given second, and it targets
* this by empirically measuring the time between rAF's and throttling
* up/down the number of items created each `rAF`. Setting this to a
* higher number will allow lower latency and higher throughput for
* event handlers and other tasks, but will result in a longer time for
* the remaining items to complete rendering.
* it tries to allow to actually fire in a given second. It does this
* by measuring the time between `rAF`s and continuously adjusting the
* number of items created each `rAF` to maintain the target framerate.
* Setting this to a higher number allows lower latency and higher
* throughput for event handlers and other tasks, but results in a
* longer time for the remaining items to complete rendering.
*/
targetFramerate: {
type: Number,
Expand Down

0 comments on commit 80a7f1e

Please sign in to comment.