juliangarnier / anime

JavaScript animation engine
https://animejs.com
MIT License
49.7k stars 3.67k forks source link

Clean up plus sign spacing in documentation page #864

Open amrhassab opened 1 year ago

amrhassab commented 1 year ago

Minor clean-up to keep the documentation page crisp, clear, and consistent.

For example at https://animejs.com/documentation/#change

progressLogEl.value = 'progress : '+Math.round(anim.progress)+'%';

does not follow the same spacing as

changeLogEl.value = 'changes : ' + changes;

now: progressLogEl.value = 'progress : ' + Math.round(anim.progress) + '%';

Other similar examples were also changed