Skip to content

Commit

Permalink
docs(planning_debug_tools): fix reactive script example
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota committed Mar 21, 2024
1 parent 6443b68 commit 627ca99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions planning/planning_debug_tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ function PlotValue(name, path, timestamp, value)
new_series = ScatterXY.new(name)
index = 0
while(true) do
series_k = TimeseriesView.find( string.format( "%s/"..value..".%d", path, index) )
series_s = TimeseriesView.find( string.format( "%s/arclength.%d", path, index) )
series_k = TimeseriesView.find( string.format( "%s/"..value.."[%d]", path, index) )
series_s = TimeseriesView.find( string.format( "%s/arclength[%d]", path, index) )
series_size = TimeseriesView.find( string.format( "%s/size", path) )

if series_k == nil or series_s == nil then break end
Expand Down

0 comments on commit 627ca99

Please sign in to comment.