From 15b3c3d1919746a4d3ae9c3f4210cbc40dcbb352 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Fri, 23 Aug 2024 11:32:35 +0200 Subject: [PATCH] Fix header levels in `sdk-operating-modes.md` (#7231) --- docs/content/reference/sdk-operating-modes.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/reference/sdk-operating-modes.md b/docs/content/reference/sdk-operating-modes.md index 8a07aca6c223..f129b4059a4e 100644 --- a/docs/content/reference/sdk-operating-modes.md +++ b/docs/content/reference/sdk-operating-modes.md @@ -28,7 +28,7 @@ Call [`rr.spawn`](https://ref.rerun.io/docs/python/stable/common/initialization_ [`RecordingStream::spawn`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.spawn) spawns a new Rerun Viewer process using an executable available in your PATH, then streams all the data to it via TCP. If an external Viewer was already running, `spawn` will connect to that one instead of spawning a new one. -## Connect +### Connect Connects to a remote Rerun Viewer and streams all the data via TCP. @@ -44,7 +44,7 @@ You will need to start a stand-alone Viewer first by typing `rerun` in your term [`RecordingStream::connect`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.connect) -## Serve +### Serve This starts the web version of the Rerun Viewer in your browser, and streams data to it in real-time using WebSockets. @@ -58,7 +58,7 @@ Use [`rr.serve`](https://ref.rerun.io/docs/python/stable/common/initialization_f [`RecordingStream::serve`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.serve) -## Save +### Save Streams all logging data into an `.rrd` file on disk, which can then be loaded into a stand-alone viewer. @@ -76,7 +76,7 @@ Use [`rr.save`](https://ref.rerun.io/docs/python/stable/common/initialization_fu Use [`RecordingStream::save`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.save). -## Standard Input/Output +### Standard Input/Output Streams all logging data to standard output, which can then be loaded by the Rerun Viewer by streaming it from standard input.