Polished
diff --git a/content/blog/2019-Numbers/index.md b/content/blog/2019-Numbers/index.md
index 68df667..4b8ebe5 100644
--- a/content/blog/2019-Numbers/index.md
+++ b/content/blog/2019-Numbers/index.md
@@ -34,10 +34,7 @@
 
 Number of gitter chat users at end of 2019: **691**
 
-Number of commits in 2019: **6734**
-```
-git shortlog -ns --since 2019-01-01 --until 2020-01-01 | cut -c1-7 | awk '{ SUM += $1} END { print SUM }'
-```
+Number of commits in 2019: **6734** [1]
 
 Total number of JIRA tickets created at end of 2019: **14340**
 
@@ -55,16 +52,19 @@
 
 Total number of contributors on github at end of 2019: **555**
 
+Number of individual committers doing commits in 2019: **218** [2]
+
 Number of closed pull requests at end of 2019: **3434**
 
 Number of closed pull requests in 2019: **482**
 
-Number of committers doing commits in 2019: **218**
-```
-git shortlog --since 2019-01-01 --until 2020-01-01 -ns | wc -l
-```
-
 The Apache Software Foundation recently posted a summary of the most active projects in 2019 and Apache Camel was ranked in the top 5 by commits and github traffic.
 
 Happy New Year and 2020 is going to be a great year for Apache Camel with Camel Kafka Connector, Camel K and Camel Quarkus all in the works and to be released as production ready 1.0 releases.
 
+
+
+```
+#1 git shortlog -ns --since 2019-01-01 --until 2020-01-01 | cut -c1-7 | awk '{ SUM += $1} END { print SUM }'
+#2 git shortlog --since 2019-01-01 --until 2020-01-01 -ns | wc -l
+```