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
6 changes: 3 additions & 3 deletions src/generators/legacy-html/utils/buildContent.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const buildMetadataElement = node => {

// Creates the added in element with the added in version
const addedinElement = createElement('span', [
createElement('b', 'Added In: '),
'Added in: ',
addedIn,
]);

Expand All @@ -126,7 +126,7 @@ const buildMetadataElement = node => {

// Creates the deprecated in element with the deprecated in version
const deprecatedInElement = createElement('span', [
createElement('b', 'Deprecated In: '),
'Deprecated in: ',
deprecatedIn,
]);

Expand All @@ -142,7 +142,7 @@ const buildMetadataElement = node => {

// Creates the removed in element with the removed in version
const removedInElement = createElement('span', [
createElement('b', 'Removed In: '),
'Removed in: ',
removedIn,
]);

Expand Down
Loading