Skip to content

Commit 75ea834

Browse files
committed
Fix a bunch of broken links
1 parent be5c713 commit 75ea834

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

ARCHITECTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The easiest way to launch the Viewer is directly from the logging API with `rr.i
2727
#### Web viewer
2828
You can try running the Viewer in a browser using `rr.serve()` in Python, or using `rerun --web-viewer mydata.rrd`.
2929

30-
The web viewer consists of just a few small files - a thin `.html`, a `.wasm` blob, and an auto-generated `.js` bridge for the wasm. These files are served using the [`re_web_viewer_server`](https://github.com/rerun-io/rerun/tree/latest/crates/re_web_viewer_server) crate.
30+
The web viewer consists of just a few small files - a thin `.html`, a `.wasm` blob, and an auto-generated `.js` bridge for the wasm. These files are served using the [`re_web_viewer_server`](https://github.com/rerun-io/rerun/tree/latest/crates/viewer/re_web_viewer_server) crate.
3131

3232
The web viewer can load `.rrd` files (just drag-drop them into the browser), or read logging data streamed over WebSockets.
3333

crates/store/re_types_core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub const DEFAULT_DISPLAY_DECIMALS: usize = 3;
3636
///
3737
/// Have a look at our [Custom Data Loader] example to learn more about handwritten bundles.
3838
///
39-
/// [IDL definitions]: https://github.com/rerun-io/rerun/tree/latest/crates/re_types/definitions/rerun
39+
/// [IDL definitions]: https://github.com/rerun-io/rerun/tree/latest/crates/store/re_types/definitions/rerun
4040
/// [Custom Data Loader]: https://github.com/rerun-io/rerun/blob/latest/examples/rust/custom_data_loader
4141
pub trait AsComponents {
4242
/// Exposes the object's contents as a set of [`ComponentBatch`]s.

docs/content/howto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ Guides for using Rerun in more advanced ways.
1515
- [Extend Rerun](howto/extend)
1616
- [By logging custom data](howto/extend/custom-data.md)
1717
- [By implementing custom visualizations (Rust only)](howto/extend/extend-ui.md)
18-
- [Efficiently log time series data using `send_columns`](howto/send_columns)
18+
- [Efficiently log time series data using `send_columns`](howto/send_columns.md)

docs/content/reference/sdk-micro-batching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Rerun SDK automatically handles micro-batching in a background thread in ord
88

99
The flushing is triggered by both time and space thresholds, whichever happens to trigger first.
1010

11-
This is very similar to, and has many parallels with, the [compaction mechanism running on the datastore side](./store-compaction).
11+
This is very similar to, and has many parallels with, the [compaction mechanism running on the datastore side](./store-compaction.md).
1212

1313
You can configure these thresholds using the following environment variables:
1414

docs/content/reference/store-compaction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Rerun datastore continuously compacts data as it comes in, in order find a s
88

99
The compaction is triggered by both number of rows and number of bytes thresholds, whichever happens to trigger first.
1010

11-
This is very similar to, and has many parallels with, the [micro-batching mechanism running on the SDK side](./sdk-micro-batching).
11+
This is very similar to, and has many parallels with, the [micro-batching mechanism running on the SDK side](./sdk-micro-batching.md).
1212

1313
You can configure these thresholds using the following environment variables:
1414

examples/cpp/external_data_loader/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ This is an example executable data-loader plugin for the Rerun Viewer.
1919
It will log C++ source code files as markdown documents.
2020
To try it out, compile it and place it in your $PATH, then open a C++ source file with Rerun (`rerun file.cpp`).
2121

22-
Consider using the [`send_columns`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1_recording_stream.html#a4d8c152606ea11043b379b9baec2c6ae) API for data loaders that ingest time series data from a file.
22+
Consider using the [`send_columns`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#ad17571d51185ce2fc2fc2f5c3070ad65) API for data loaders that ingest time series data from a file.
2323
This can be much more efficient that the stateful `log` API as it allows bundling
2424
component data over time into a single call consuming a continuous block of memory.

examples/rust/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Rerun Rust examples
22

3-
These are examples of how to use the [`rerun`](https://github.com/rerun-io/rerun/tree/latest/crates/rerun) crate.
3+
These are examples of how to use the [`rerun`](https://github.com/rerun-io/rerun/tree/latest/crates/top/rerun) crate.
44

55
## Running the examples
66

rerun_cpp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ From a build system perspective, the SDK consists of three dependencies:
6969
* To avoid compatibility issues across different platforms, compiler versions and C++ standard library versions
7070
we recommend to build the C++ SDK directly from source.
7171
Note that this also what happens when you follow the CMake setup in the [quickstart guide](https://www.rerun.io/docs/getting-started/quick-start/cpp).
72-
* [rerun_c](https://github.com/rerun-io/rerun/tree/latest/crates/rerun_c/) static libraries
72+
* [rerun_c](https://github.com/rerun-io/rerun/tree/latest/crates/top/rerun_c/) static libraries
7373
* Rerun C is a minimal C SDK and forms the bridge to the shared Rust codebase
7474
* Due to the rigidity of the C ABI and lack of complex standard library types in the interface,
7575
compatibility issues between compilers are less of a concern
@@ -143,7 +143,7 @@ target_link_libraries(<yourtarget> PRIVATE rerun_sdk)
143143

144144
Refer to the [build instruction](https://github.com/rerun-io/rerun/tree/latest/BUILD.md) at the repo root.
145145

146-
Keep in mind that all archetypes/components/datatypes are mostly generated by the [Rerun types builder](https://github.com/rerun-io/rerun/tree/latest/crates/re_types_builder).
146+
Keep in mind that all archetypes/components/datatypes are mostly generated by the [Rerun types builder](https://github.com/rerun-io/rerun/tree/latest/crates/build/re_types_builder).
147147
Use `pixi run codegen` to run code generation. Generally, all generated code files are part of the repository,
148148
so you only have to do that if you change the data definition or make changes to `_ext.cpp` files which
149149
extend generated types.

rerun_cpp/cmake_setup_in_detail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ to pick up a system-version of Arrow instead of the one you built against.
105105
## RERUN_C_LIB
106106
Path to the static Rerun C library to link against.
107107

108-
`rerun_c` is a static library built from a [Rust crate](https://github.com/rerun-io/rerun/tree/latest/crates/rerun_c).
108+
`rerun_c` is a static library built from a [Rust crate](https://github.com/rerun-io/rerun/tree/latest/crates/top/rerun_c).
109109
It provides a minimalistic C interface that encapsulates the shared building blocks of all Rerun SDKs.
110110

111111
By default points to where a pre-built library for the currently active platform

scripts/lint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,7 @@ def main() -> None:
11791179
"./.github/workflows/reusable_checks.yml", # zombie TODO hunting job
11801180
"./.pytest_cache",
11811181
"./CODE_STYLE.md",
1182-
"./crates/re_types_builder/src/reflection.rs", # auto-generated
1182+
"./crates/build/re_types_builder/src/reflection.rs", # auto-generated
11831183
"./docs/content/reference/cli.md", # auto-generated
11841184
"./examples/assets",
11851185
"./examples/python/detect_and_track_objects/cache/version.txt",

0 commit comments

Comments
 (0)