diff --git a/src/OpenTracing/ITracer.cs b/src/OpenTracing/ITracer.cs
index 947e800..7ada90a 100644
--- a/src/OpenTracing/ITracer.cs
+++ b/src/OpenTracing/ITracer.cs
@@ -62,7 +62,7 @@ public interface ITracer
/// The instance to inject into the .
/// The of the .
///
- /// The carrier for the state. All implementations must support
+ /// The carrier for the state. All implementations must support
/// and .
///
///
@@ -88,7 +88,7 @@ public interface ITracer
/// The type, which also parametrizes the .
/// The of the .
///
- /// The carrier for the state. All implementations must support
+ /// The carrier for the state. All implementations must support
/// and .
///
/// The instance holding context to create a span.
diff --git a/src/OpenTracing/Mock/MockSpan.cs b/src/OpenTracing/Mock/MockSpan.cs
index 098a227..07ac221 100644
--- a/src/OpenTracing/Mock/MockSpan.cs
+++ b/src/OpenTracing/Mock/MockSpan.cs
@@ -39,7 +39,7 @@ private static string NextId()
private readonly List _errors = new List();
///
- /// The spanId of the span's first reference, or the first reference of any type,
+ /// The spanId of the span's first reference, or the first reference of any type,
/// or null if no reference exists.
///
///
diff --git a/src/OpenTracing/Mock/MockTracer.cs b/src/OpenTracing/Mock/MockTracer.cs
index 0f0409b..7a96d63 100644
--- a/src/OpenTracing/Mock/MockTracer.cs
+++ b/src/OpenTracing/Mock/MockTracer.cs
@@ -44,7 +44,7 @@ public MockTracer(IScopeManager scopeManager, IPropagator propagator)
///
/// Create a new that passes through any calls
- /// to and/or .
+ /// to and/or .
///
public MockTracer(IPropagator propagator)
: this(new AsyncLocalScopeManager(), propagator)
diff --git a/src/OpenTracing/Mock/Propagators.cs b/src/OpenTracing/Mock/Propagators.cs
index f78446e..c88edb1 100644
--- a/src/OpenTracing/Mock/Propagators.cs
+++ b/src/OpenTracing/Mock/Propagators.cs
@@ -12,7 +12,7 @@ public static class Propagators
}
///
- /// Allows the developer to inject into the and calls.
+ /// Allows the developer to inject into the and calls.
///
public interface IPropagator
{
diff --git a/src/OpenTracing/Propagation/TextMapExtractAdapter.cs b/src/OpenTracing/Propagation/TextMapExtractAdapter.cs
index e4d2ee5..3d8d3e7 100644
--- a/src/OpenTracing/Propagation/TextMapExtractAdapter.cs
+++ b/src/OpenTracing/Propagation/TextMapExtractAdapter.cs
@@ -5,7 +5,7 @@
namespace OpenTracing.Propagation
{
///
- /// A carrier for use with ONLY (it has no mutating methods). Note that the
+ /// A carrier for use with ONLY (it has no mutating methods). Note that the
/// interface can be made to wrap around arbitrary data types
/// (not just Dictionary<string, string>
as illustrated here).
///