Skip to content

Commit d92c1e7

Browse files
authored
fix: make casing consistent (#249)
1 parent 91df749 commit d92c1e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/generators/legacy-html/utils/buildContent.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const buildMetadataElement = node => {
110110

111111
// Creates the added in element with the added in version
112112
const addedinElement = createElement('span', [
113-
createElement('b', 'Added In: '),
113+
'Added in: ',
114114
addedIn,
115115
]);
116116

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

127127
// Creates the deprecated in element with the deprecated in version
128128
const deprecatedInElement = createElement('span', [
129-
createElement('b', 'Deprecated In: '),
129+
'Deprecated in: ',
130130
deprecatedIn,
131131
]);
132132

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

143143
// Creates the removed in element with the removed in version
144144
const removedInElement = createElement('span', [
145-
createElement('b', 'Removed In: '),
145+
'Removed in: ',
146146
removedIn,
147147
]);
148148

0 commit comments

Comments
 (0)