Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Oct 28, 2024
1 parent 0d89c0f commit 9fdcdc0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/top/re_sdk/src/recording_stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ impl RecordingStreamBuilder {
/// ## Example
///
/// ```no_run
/// let rec = re_sdk::RecordingStreamBuilder::new("rerun_example_app").connect()?;
/// let rec = re_sdk::RecordingStreamBuilder::new("rerun_example_app").connect_tcp()?;
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
pub fn connect_tcp(self) -> RecordingStreamResult<RecordingStream> {
Expand Down Expand Up @@ -581,11 +581,11 @@ impl RecordingStreamBuilder {
///
/// ```ignore
/// let rec = re_sdk::RecordingStreamBuilder::new("rerun_example_app")
/// .serve("0.0.0.0",
/// Default::default(),
/// Default::default(),
/// re_sdk::MemoryLimit::from_fraction_of_total(0.25),
/// true)?;
/// .serve_web("0.0.0.0",
/// Default::default(),
/// Default::default(),
/// re_sdk::MemoryLimit::from_fraction_of_total(0.25),
/// true)?;
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
//
Expand Down

0 comments on commit 9fdcdc0

Please sign in to comment.