diff --git a/src/OpenTelemetry/CHANGELOG.md b/src/OpenTelemetry/CHANGELOG.md
index 8fcf98e81b6..8788dec74dc 100644
--- a/src/OpenTelemetry/CHANGELOG.md
+++ b/src/OpenTelemetry/CHANGELOG.md
@@ -11,8 +11,8 @@
* TracerProviderBuilder.AddLegacySource now supports wildcard activity names.
([#2183](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2183))
-* Instrument and View names are validated
-[according with the spec](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md#instrument).
+* Instrument and View names are validated
+ [according with the spec](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md#instrument).
([#2470](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2470))
## 1.2.0-alpha4
diff --git a/src/OpenTelemetry/Metrics/MeterProviderBuilderSdk.cs b/src/OpenTelemetry/Metrics/MeterProviderBuilderSdk.cs
index f7418f5d4c1..0198ec5167b 100644
--- a/src/OpenTelemetry/Metrics/MeterProviderBuilderSdk.cs
+++ b/src/OpenTelemetry/Metrics/MeterProviderBuilderSdk.cs
@@ -26,8 +26,8 @@ internal class MeterProviderBuilderSdk : MeterProviderBuilderBase
///
/// Returns whether the given instrument name is valid according with the specification.
///
- /// See specification:
- /// The instrument name
+ /// See specification: .
+ /// The instrument name.
/// Boolean indicating if the instrument is valid.
internal static bool InstrumentNameValid(string instrumentName)
{
@@ -42,8 +42,8 @@ internal static bool InstrumentNameValid(string instrumentName)
///
/// Returns whether the given custom view name is valid according with the specification.
///
- /// See specification:
- /// The view name
+ /// See specification: .
+ /// The view name.
/// Boolean indicating if the instrument is valid.
internal static bool ViewNameValid(string customViewName)
{