diff --git a/src/app/dialogs/launch-analysis/launch-analysis.component.html b/src/app/dialogs/launch-analysis/launch-analysis.component.html
index c466bd0d5fdf35339a98a7ac0ec72a6425210df6..c9aa44787e0067372350b71c5b4051f0d86fd158 100644
--- a/src/app/dialogs/launch-analysis/launch-analysis.component.html
+++ b/src/app/dialogs/launch-analysis/launch-analysis.component.html
@@ -183,9 +183,9 @@
                 </div>
                 <div class="media-content">
                   <div class="content">
-                    <h6 class="is-6">About Closeness Centrality</h6>
+                    <h6 class="is-6">About Harmonic Centrality</h6>
                     <p>
-                      Closeness Centrality is a node centrality measure that
+                      Harmonic Centrality is a node centrality measure that
                       ranks the nodes in a network based on the lengths of their
                       shortest paths to all other nodes in the network.
                     </p>
diff --git a/src/app/services/analysis/analysis.service.ts b/src/app/services/analysis/analysis.service.ts
index 3afeaa51ae377d88ce8ac24170259fadd0cd720a..88a810ea6f61c7a369fb586a37ec47e6bc8b715e 100644
--- a/src/app/services/analysis/analysis.service.ts
+++ b/src/app/services/analysis/analysis.service.ts
@@ -23,7 +23,7 @@ export const algorithmNames = {
   trustrank: 'TrustRank',
   keypathwayminer: 'KeyPathwayMiner',
   multisteiner: 'Multi-Steiner',
-  closeness: 'Closeness Centrality',
+  closeness: 'Harmonic Centrality',
   degree: 'Degree Centrality',
   proximity: 'Network Proximity',
   betweenness: 'Betweenness Centrality',