Skip to content

Commit eb4ac5e

Browse files
authored
Merge pull request #1231 from OpenFn/docs-fix
fix docs build by removing extra ' * '
2 parents 39f86ef + f740f76 commit eb4ac5e

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/fhir-4/src/datatypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export const value = (value, system, ...extra) =>
198198
* @param {object} extra - Extra properties to write to the coding
199199
* @example <caption><Create a codeableConcept</caption>
200200
* const myConcept = util.concept(['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
201-
* * @example <caption><Create a codeableConcept with text</caption>
201+
* @example <caption><Create a codeableConcept with text</caption>
202202
* const myConcept = util.concept('smart care id', ['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
203203
*/
204204
type ConceptCoding =

packages/fhir-4/types/builders.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5250,7 +5250,7 @@ declare const value: (value: any, system: any, ...extra: any[]) => any;
52505250
* @param {object} extra - Extra properties to write to the coding
52515251
* @example <caption><Create a codeableConcept</caption>
52525252
* const myConcept = util.concept(['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
5253-
* * @example <caption><Create a codeableConcept with text</caption>
5253+
* @example <caption><Create a codeableConcept with text</caption>
52545254
* const myConcept = util.concept('smart care id', ['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
52555255
*/
52565256
declare type ConceptCoding = Coding | [string, string, Omit<Coding, 'code' | 'system'>?];

packages/fhir-fr/src/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export const coding = (code, system) => ({ code, system: mapSystems(system) });
145145
* @function
146146
* @example <caption><Create a codeableConcept</caption>
147147
* const myConcept = util.concept(['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
148-
* * @example <caption><Create a codeableConcept with text</caption>
148+
* @example <caption><Create a codeableConcept with text</caption>
149149
* const myConcept = util.concept('smart care id', ['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
150150
*/
151151
export const concept = (text, ...codings) => {

packages/fhir-ndr-et/src/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export const coding = (code, system) => ({ code, system: mapSystems(system) });
142142
* @function
143143
* @example <caption><Create a codeableConcept</caption>
144144
* const myConcept = util.concept(['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
145-
* * @example <caption><Create a codeableConcept with text</caption>
145+
* @example <caption><Create a codeableConcept with text</caption>
146146
* const myConcept = util.concept('smart care id', ['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
147147
*/
148148
export const concept = (text, ...codings) => {

tools/generate-fhir/template/src/datatypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export const value = (value, system, ...extra) =>
188188
* @function
189189
* @example <caption><Create a codeableConcept</caption>
190190
* const myConcept = util.concept(['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
191-
* * @example <caption><Create a codeableConcept with text</caption>
191+
* @example <caption><Create a codeableConcept with text</caption>
192192
* const myConcept = util.concept('smart care id', ['abc', 'http://moh.gov.et/fhir/hiv/identifier/SmartCareID'])
193193
*/
194194
export const concept = (text, ...codings) => {

0 commit comments

Comments
 (0)