Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Oct 19, 2024
1 parent 124be04 commit 87ed4ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/python/dataframe_query/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ curl 'https://app.rerun.io/version/latest/examples/dna.rrd' -o - > /tmp/dna.rrd

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

```bash
Expand Down
2 changes: 1 addition & 1 deletion examples/python/dataframe_query/dataframe_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
curl 'https://app.rerun.io/version/latest/examples/dna.rrd' -o - > /tmp/dna.rrd
The results can be filtered further by specifying an entity filter expression:
{bin_name} my_recording.rrd /skeleton/left_shoulder/**
{bin_name} my_recording.rrd /helix/structure/**
""".strip()


Expand Down
2 changes: 1 addition & 1 deletion examples/rust/dataframe_query/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ curl 'https://app.rerun.io/version/latest/examples/dna.rrd' -o - > /tmp/dna.rrd

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

2 changes: 1 addition & 1 deletion examples/rust/dataframe_query/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
curl 'https://app.rerun.io/version/latest/examples/dna.rrd' -o - > /tmp/dna.rrd
The results can be filtered further by specifying an entity filter expression:
{bin_name} my_recording.rrd /skeleton/left_shoulder/**\
{bin_name} my_recording.rrd /helix/structure/**\
",
)),
);
Expand Down

0 comments on commit 87ed4ad

Please sign in to comment.