diff --git a/src/ice_transport.h b/src/ice_transport.h
index 4bee84740c1a68492f46332760c2a1ad74ce18c7..c8b373ea6bc5f978940f2b74a4e1e93e83f6056f 100644
--- a/src/ice_transport.h
+++ b/src/ice_transport.h
@@ -140,7 +140,7 @@ public:
     bool isInitiator() const;
 
     /**
-     * Start tranport negotiation between local candidates and given remote
+     * Start transport negotiation between local candidates and given remote
      * to find the right candidate pair.
      * This function doesn't block, the callback on_negodone_cb will be called
      * with the negotiation result when operation is really done.
diff --git a/src/jamidht/abstract_sip_transport.h b/src/jamidht/abstract_sip_transport.h
index 98925d55bedf8f32aac314119236fba9bf69c152..9d8cb5ed4d37f97bfa17729cb0e7f60e5486664f 100644
--- a/src/jamidht/abstract_sip_transport.h
+++ b/src/jamidht/abstract_sip_transport.h
@@ -44,7 +44,7 @@ public:
         AbstractSIPTransport* self {nullptr};
     };
     static_assert(std::is_standard_layout<TransportData>::value,
-                  "TranportData requires standard-layout");
+                  "TransportData requires standard-layout");
 
     virtual ~AbstractSIPTransport() {};
 
diff --git a/src/jamidht/jamiaccount.cpp b/src/jamidht/jamiaccount.cpp
index f4f38035c1fb25abaa83c643758e7964e243b6ce..900631ab873c695ca4a3329d73156b783f0d7588 100644
--- a/src/jamidht/jamiaccount.cpp
+++ b/src/jamidht/jamiaccount.cpp
@@ -287,7 +287,7 @@ dhtStatusStr(dht::NodeStatus status)
 /**
  * Local ICE Transport factory helper
  *
- * JamiAccount must use this helper than direct IceTranportFactory API
+ * JamiAccount must use this helper than direct IceTransportFactory API
  */
 template<class... Args>
 std::shared_ptr<IceTransport>
diff --git a/src/sip/sipcall.cpp b/src/sip/sipcall.cpp
index cd670fe2ffd8edcf3c447fe056355aefecf75a42..e998b1d9bfe3cc706f82ce1e98ee6b62613e84c6 100644
--- a/src/sip/sipcall.cpp
+++ b/src/sip/sipcall.cpp
@@ -398,7 +398,7 @@ SIPCall::setSipTransport(const std::shared_ptr<SipTransport>& transport,
                          const std::string& contactHdr)
 {
     if (transport != sipTransport_) {
-        JAMI_DBG("[call:%s] Setting tranport to [%p]", getCallId().c_str(), transport.get());
+        JAMI_DBG("[call:%s] Setting transport to [%p]", getCallId().c_str(), transport.get());
     }
 
     sipTransport_ = transport;