Skip to content

Commit 1c5386a

Browse files
chore: fix parameter type in several annotated string constructors (#1373)
1 parent d0e64f0 commit 1c5386a

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageBulletListLabel.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ class OudsAnnotatedAlertMessageBulletListLabel internal constructor(annotatedStr
6767
}
6868

6969
/**
70-
* Creates a builder initialized with an existing annotated helper text.
70+
* Creates a builder initialized with an existing annotated alert message bullet list.
7171
*
7272
* @param text The initial annotated text to copy.
7373
*/
74-
constructor(text: OudsAnnotatedHelperText) : this() {
74+
constructor(text: OudsAnnotatedAlertMessageBulletListLabel) : this() {
7575
append(text)
7676
}
7777

core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedAlertMessageDescription.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ class OudsAnnotatedAlertMessageDescription internal constructor(annotatedString:
6464
}
6565

6666
/**
67-
* Creates a builder initialized with an existing annotated helper text.
67+
* Creates a builder initialized with an existing annotated alert message description.
6868
*
6969
* @param text The initial annotated text to copy.
7070
*/
71-
constructor(text: OudsAnnotatedHelperText) : this() {
71+
constructor(text: OudsAnnotatedAlertMessageDescription) : this() {
7272
append(text)
7373
}
7474

core/src/main/java/com/orange/ouds/core/component/common/text/OudsAnnotatedBulletListLabel.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ class OudsAnnotatedBulletListLabel internal constructor(annotatedString: Annotat
6262
}
6363

6464
/**
65-
* Creates a builder initialized with an existing annotated helper text.
65+
* Creates a builder initialized with an existing annotated bullet list label.
6666
*
6767
* @param text The initial annotated text to copy.
6868
*/
69-
constructor(text: OudsAnnotatedHelperText) : this() {
69+
constructor(text: OudsAnnotatedBulletListLabel) : this() {
7070
append(text)
7171
}
7272

0 commit comments

Comments
 (0)