Skip to content

Commit c036272

Browse files
committed
review
1 parent 238f108 commit c036272

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/python/dataframe_query/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ curl 'https://app.rerun.io/version/latest/examples/dna.rrd' -o - > /tmp/dna.rrd
88

99
The results can be filtered further by specifying an entity filter expression:
1010
```bash
11-
python dataframe_query.py my_recording.rrd /skeleton/left_shoulder/**\
11+
python dataframe_query.py my_recording.rrd /helix/structure/**\
1212
```
1313

1414
```bash

examples/python/dataframe_query/dataframe_query.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
curl 'https://app.rerun.io/version/latest/examples/dna.rrd' -o - > /tmp/dna.rrd
1919
2020
The results can be filtered further by specifying an entity filter expression:
21-
{bin_name} my_recording.rrd /skeleton/left_shoulder/**
21+
{bin_name} my_recording.rrd /helix/structure/**
2222
""".strip()
2323

2424

examples/rust/dataframe_query/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ curl 'https://app.rerun.io/version/latest/examples/dna.rrd' -o - > /tmp/dna.rrd
1212

1313
The results can be filtered further by specifying an entity filter expression:
1414
```bash
15-
cargo run --release -- my_recording.rrd /skeleton/left_shoulder/**\
15+
cargo run --release -- my_recording.rrd /helix/structure/**\
1616
```
1717

examples/rust/dataframe_query/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
2929
curl 'https://app.rerun.io/version/latest/examples/dna.rrd' -o - > /tmp/dna.rrd
3030
3131
The results can be filtered further by specifying an entity filter expression:
32-
{bin_name} my_recording.rrd /skeleton/left_shoulder/**\
32+
{bin_name} my_recording.rrd /helix/structure/**\
3333
",
3434
)),
3535
);

0 commit comments

Comments
 (0)