From 94eac0b8facf04b8bbd145bc6c3cfadde7f5a057 Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Thu, 18 Sep 2014 09:47:23 -0700 Subject: [PATCH] Fix a comment typo --- src/utils/adler32.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/adler32.js b/src/utils/adler32.js index 59f9f21d38f..53ae7a7dfcd 100644 --- a/src/utils/adler32.js +++ b/src/utils/adler32.js @@ -24,7 +24,7 @@ var MOD = 65521; // This is a clean-room implementation of adler32 designed for detecting // if markup is not what we expect it to be. It does not need to be -// cryptographically strong, only reasonable good at detecting if markup +// cryptographically strong, only reasonably good at detecting if markup // generated on the server is different than that on the client. function adler32(data) { var a = 1;