diff --git a/compositor_api/src/types/component.rs b/compositor_api/src/types/component.rs index 45c9326e4..d4f60ac23 100644 --- a/compositor_api/src/types/component.rs +++ b/compositor_api/src/types/component.rs @@ -39,13 +39,13 @@ pub struct View { /// Width of a component in pixels. Exact behavior might be different based on the parent /// component: /// - If the parent component is a layout, check sections "Absolute positioning" and "Static - /// positioning" of that component. + /// positioning" of that component. /// - If the parent component is not a layout, then this field is required. pub width: Option, /// Height of a component in pixels. Exact behavior might be different based on the parent /// component: /// - If the parent component is a layout, check sections "Absolute positioning" and "Static - /// positioning" of that component. + /// positioning" of that component. /// - If the parent component is not a layout, then this field is required. pub height: Option, @@ -129,13 +129,13 @@ pub struct Rescaler { /// Width of a component in pixels. Exact behavior might be different based on the parent /// component: /// - If the parent component is a layout, check sections "Absolute positioning" and "Static - /// positioning" of that component. + /// positioning" of that component. /// - If the parent component is not a layout, then this field is required. pub width: Option, /// Height of a component in pixels. Exact behavior might be different based on the parent /// component: /// - If the parent component is a layout, check sections "Absolute positioning" and "Static - /// positioning" of that component. + /// positioning" of that component. /// - If the parent component is not a layout, then this field is required. pub height: Option, @@ -352,13 +352,13 @@ pub struct Tiles { /// Width of a component in pixels. Exact behavior might be different based on the parent /// component: /// - If the parent component is a layout, check sections "Absolute positioning" and "Static - /// positioning" of that component. + /// positioning" of that component. /// - If the parent component is not a layout, then this field is required. pub width: Option, /// Height of a component in pixels. Exact behavior might be different based on the parent /// component: /// - If the parent component is a layout, check sections "Absolute positioning" and "Static - /// positioning" of that component. + /// positioning" of that component. /// - If the parent component is not a layout, then this field is required. pub height: Option, diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx index a906534d5..8c076c1b4 100644 --- a/docs/src/pages/index.tsx +++ b/docs/src/pages/index.tsx @@ -215,7 +215,7 @@ function VisionCard(props: PropsWithChildren) {
- + {props.title}
@@ -233,7 +233,7 @@ type FeatureProps = { function Feature(props: PropsWithChildren) { const text = (
- + {props.text}

{props.secondaryText}

diff --git a/integration_tests/src/tests/push_input_before_start.rs b/integration_tests/src/tests/push_input_before_start.rs index 7a17237a3..e9368e159 100644 --- a/integration_tests/src/tests/push_input_before_start.rs +++ b/integration_tests/src/tests/push_input_before_start.rs @@ -13,7 +13,7 @@ use crate::{ /// /// Output: /// - Display entire input stream from the beginning (16 seconds). No black frames at the -/// beginning. Starts with a green color. +/// beginning. Starts with a green color. /// - Black screen for remaining 4 seconds. #[test] pub fn push_input_before_start_tcp() -> Result<()> { @@ -98,7 +98,7 @@ pub fn push_input_before_start_tcp() -> Result<()> { /// /// Output: /// - Display entire input stream from the beginning (16 seconds). No black frames at the -/// beginning. Starts with a green screen. +/// beginning. Starts with a green screen. /// - Black screen for remaining 4 seconds. #[test] pub fn push_input_before_start_udp() -> Result<()> { @@ -183,7 +183,7 @@ pub fn push_input_before_start_udp() -> Result<()> { /// /// Output: /// - Display input stream without initial 5 seconds from the beginning (11 seconds). Not black frames at the -/// beginning. Starts with a red color. Initial 5 second of input stream is missing. +/// beginning. Starts with a red color. Initial 5 second of input stream is missing. /// - Black screen for remaining 9 seconds. #[test] pub fn push_input_before_start_tcp_no_offset() -> Result<()> { @@ -268,7 +268,7 @@ pub fn push_input_before_start_tcp_no_offset() -> Result<()> { /// /// Output: /// - Display entire input stream from the beginning (16 seconds). No black frames at the -/// beginning. Starts with a red color. Initial 5 second of input stream is missing. +/// beginning. Starts with a red color. Initial 5 second of input stream is missing. /// - Black screen for remaining 19 seconds. #[test] pub fn push_input_before_start_udp_no_offset() -> Result<()> {