Skip to content

Commit

Permalink
Fix function signatures in docstrings (#4776)
Browse files Browse the repository at this point in the history
Fix docstrings for record_event and replay_event in event-recorder.jl
  • Loading branch information
abhro authored Feb 11, 2025
1 parent 0f095bd commit 1f8f242
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/event-recorder.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

"""
record_events(f, scene::Scene, path::String)
record_events(f, scene::Scene, path::String)
Records all window events that happen while executing function `f`
for `scene` and serializes them to `path`.
Expand All @@ -24,8 +24,8 @@ function record_events(f, scene::Scene, path::String)
end

"""
replay_events(f, scene::Scene, path::String)
replay_events(scene::Scene, path::String)
replay_events(f, scene::Scene, path::String)
replay_events(scene::Scene, path::String)
Replays the serialized events recorded with `record_events` in `path` in `scene`.
"""
Expand Down

0 comments on commit 1f8f242

Please sign in to comment.