Skip to content

Commit

Permalink
chore: spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
mwfarb committed Apr 3, 2024
1 parent 07cf514 commit 097c813
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions content/python/callbacks.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ scene.end_program_callback = end_program_callback
### user_join_callback

This is called whenever the library detects/finds a new user that it hasn't seen before in a scene.
Note: this is not neccesarily called when a user "joins" a scene, rather, it is called when the library first sees a `Camera` object/receives an "update" message from a user.
Note: this is not necessarily called when a user "joins" a scene, rather, it is called when the library first sees a `Camera` object/receives an "update" message from a user.

#### Usage:

Expand All @@ -115,7 +115,6 @@ def user_join_callback(camera):
camera.object_id
camera.displayName
camera.hasVideo
camera.displayName
# etc.

scene.user_join_callback = user_join_callback
Expand All @@ -134,7 +133,6 @@ def user_left_callback(camera):
camera.object_id
camera.displayName
camera.hasVideo
camera.displayName
# etc.

scene.user_left_callback = user_left_callback
Expand Down

0 comments on commit 097c813

Please sign in to comment.