From 053ef0bc0a5803111e47bb916259aa3c3a2456e5 Mon Sep 17 00:00:00 2001
From: Luke Barnard <luke@matrix.org>
Date: Thu, 26 Apr 2018 13:05:59 +0100
Subject: [PATCH] PPI->PII

---
 src/Analytics.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Analytics.js b/src/Analytics.js
index e918530ba8..09689fff15 100644
--- a/src/Analytics.js
+++ b/src/Analytics.js
@@ -25,7 +25,7 @@ const hashVarRegex = /#\/(group|room|user)\/.*$/;
 
 // Remove all but the first item in the hash path. Redact unexpected hashes.
 function getRedactedHash(hash) {
-    // Don't leak URLs we aren't expecting - they could contain tokens/PPI
+    // Don't leak URLs we aren't expecting - they could contain tokens/PII
     const match = hashRegex.exec(hash);
     if (!match) {
         console.warn(`Unexpected hash location "${hash}"`);