diff --git a/Directory.Packages.props b/Directory.Packages.props
index ae868db8..e443a083 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -3,7 +3,7 @@
true
5.9.0
1.67.0
- 1.0.0-prerelease.50
+ 1.0.0-prerelease.51
10.0.12
10.10.0
1.18.0
diff --git a/package.json b/package.json
index 067e0574..d10244de 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "purview-telemetry-sourcegenerator",
- "version": "5.0.0-prerelease.15",
+ "version": "5.0.0-prerelease.16",
"description": "Generates [`ActivitySource`](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.activitysource), [`ILogger`](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.ilogger), and [`Metrics`](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.metrics) based on interface methods.",
"license": "MIT",
"readme": "README.md",
diff --git a/src/src/SourceGenerator/Emitters/EmitterHelpers.cs b/src/src/SourceGenerator/Emitters/EmitterHelpers.cs
index 47c62cd3..291f8a6d 100644
--- a/src/src/SourceGenerator/Emitters/EmitterHelpers.cs
+++ b/src/src/SourceGenerator/Emitters/EmitterHelpers.cs
@@ -29,7 +29,7 @@ public static AttributeDeclarationOptions AggressiveInliningAttribute() =>
};
///
- /// Adds a finished as a generated source file. The writer's
+ /// Adds a finished CodeWriter as a generated source file. The writer's
/// disposable scopes must all be closed before calling this; materializing the source
/// validates that they are.
///
diff --git a/src/src/SourceGenerator/Emitters/GeneratedTypesEmitter.cs b/src/src/SourceGenerator/Emitters/GeneratedTypesEmitter.cs
index 24301e86..d5be5941 100644
--- a/src/src/SourceGenerator/Emitters/GeneratedTypesEmitter.cs
+++ b/src/src/SourceGenerator/Emitters/GeneratedTypesEmitter.cs
@@ -6,7 +6,7 @@ namespace Purview.Telemetry.SourceGenerator.Emitters;
///
/// Emits the marker-attribute templates injected into consuming compilations. Each template
/// previously shipped as a static embedded resource; it is now built in memory with a
-/// inside RegisterPostInitializationOutput.
+/// CodeWriter inside RegisterPostInitializationOutput.
///
static class GeneratedTypesEmitter
{