Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: third_party/WebKit/Source/core/timing/MemoryInfo.cpp

Issue 1444173002: third_party/WebKit: fix typos found in comments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CL Description change, Typo patch apply to upstream master. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/timing/MemoryInfo.cpp
diff --git a/third_party/WebKit/Source/core/timing/MemoryInfo.cpp b/third_party/WebKit/Source/core/timing/MemoryInfo.cpp
index ef6c06f51432cccfaf8e93573b651e97ede48b5d..813915aea4b95b5ac3e602c0a1a8263cbae194a7 100644
--- a/third_party/WebKit/Source/core/timing/MemoryInfo.cpp
+++ b/third_party/WebKit/Source/core/timing/MemoryInfo.cpp
@@ -117,7 +117,7 @@ size_t quantizeMemorySize(size_t size)
const float scalingFactor = exp(log(largestBucketSize / sizeOfNextBucket) / numberOfBuckets);
size_t nextPowerOfTen = static_cast<size_t>(pow(10, floor(log10(sizeOfNextBucket)) + 1) + 0.5);
- size_t granularity = nextPowerOfTen / 1000; // We want 3 signficant digits.
+ size_t granularity = nextPowerOfTen / 1000; // We want 3 significant digits.
for (int i = 0; i < numberOfBuckets; ++i) {
size_t currentBucketSize = static_cast<size_t>(sizeOfNextBucket);

Powered by Google App Engine
This is Rietveld 408576698