Skip to content

Commit

Permalink
Fix typos in docstring of Table.replace.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 602306011
Change-Id: Iabf7a268f385bd1154ce549aba486acbf4cec0f8
  • Loading branch information
acassirer authored and copybara-github committed Jan 29, 2024
1 parent 0ee5fd8 commit b306c4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions reverb/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,12 @@ def replace(self,
rate_limiter: Manages the data flow by limiting the sample and insert
calls. Configuration of the original table is used when not specified.
max_times_sampled: Maximum number of times an item can be sampled before
it is deleted, or None to re-use existing table's max_size.
it is deleted, or None to re-use existing table's max_times_sampled.
extensions: Optional sequence of extensions used to add extra features to
the table, or None to re-use existing table's max_size.
the table, or None to re-use existing table's extensions.
signature: Optional nested structure containing `tf.TypeSpec` objects,
describing the schema of items in this table, or None to re-use existing
table's max_size.
table's signature.
Returns:
Table with the same configuration as the original one (modulo overrides).
"""
Expand Down

0 comments on commit b306c4b

Please sign in to comment.