Skip to content

Commit f910510

Browse files
committed
fix: correct formatting in documentation comments for overlay encoding methods
1 parent 9275a50 commit f910510

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/interfaces/Transformation.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ export interface TextOverlay extends BaseOverlay {
530530
*
531531
* The `plain` option uses the format `i-{input}`, while `base64` uses `ie-{base64_encoded_input}`.
532532
*
533-
* * Regardless of the encoding method, the input text is always percent-encoded to ensure it is URL-safe.
533+
* Regardless of the encoding method, the input text is always percent-encoded to ensure it is URL-safe.
534534
*/
535535
encoding: "auto" | "plain" | "base64";
536536

@@ -555,7 +555,7 @@ export interface ImageOverlay extends BaseOverlay {
555555
*
556556
* The `plain` option uses the format `i-{input}`, while `base64` uses `ie-{base64_encoded_input}`.
557557
*
558-
* * Regardless of the encoding method:
558+
* Regardless of the encoding method:
559559
* - Leading and trailing slashes are removed.
560560
* - Any remaining slashes within the path are replaced with `@@` when using plain text.
561561
*/
@@ -583,7 +583,7 @@ export interface VideoOverlay extends BaseOverlay {
583583
*
584584
* The `plain` option uses the format `i-{input}`, while `base64` uses `ie-{base64_encoded_input}`.
585585
*
586-
* * Regardless of the encoding method:
586+
* Regardless of the encoding method:
587587
* - Leading and trailing slashes are removed.
588588
* - Any remaining slashes within the path are replaced with `@@` when using plain text.
589589
*/
@@ -611,7 +611,7 @@ export interface SubtitleOverlay extends BaseOverlay {
611611
*
612612
* The `plain` option uses the format `i-{input}`, while `base64` uses `ie-{base64_encoded_input}`.
613613
*
614-
* * Regardless of the encoding method:
614+
* Regardless of the encoding method:
615615
* - Leading and trailing slashes are removed.
616616
* - Any remaining slashes within the path are replaced with `@@` when using plain text.
617617
*/

0 commit comments

Comments
 (0)