Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Elastic.Markdown/Myst/FrontMatter/Applicability.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public static bool TryParse(string? value, IList<(Severity, string)> diagnostics
};

// TODO emit as error when all docs have been updated
if (lifecycle is ProductLifecycle.Planned or ProductLifecycle.Deprecated or ProductLifecycle.Development)
if (lifecycle is ProductLifecycle.Planned or ProductLifecycle.Development)
diagnostics.Add((Severity.Hint, $"The '{lookup}' lifecycle is deprecated and will be removed in a future release."));

var version = tokens.Length < 2
Expand Down
Loading