Skip to content

Commit af3dcd2

Browse files
author
jax authors
committed
Merge pull request #20649 from jakevdp:fix-spelling
PiperOrigin-RevId: 622967850
2 parents 7b486f4 + 5115b89 commit af3dcd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jax/_src/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -832,14 +832,14 @@ def addressable_data(self, index):
832832

833833
@property
834834
def block_until_ready(self):
835-
# Raise AttribureError for backward compatibility with hasattr() and getattr() checks.
835+
# Raise AttributeError for backward compatibility with hasattr() and getattr() checks.
836836
raise AttributeError(self,
837837
f"The 'block_until_ready' method is not available on {self._error_repr()}."
838838
f"{self._origin_msg()}")
839839

840840
@property
841841
def copy_to_host_async(self):
842-
# Raise AttribureError for backward compatibility with hasattr() and getattr() checks.
842+
# Raise AttributeError for backward compatibility with hasattr() and getattr() checks.
843843
raise AttributeError(self,
844844
f"The 'copy_to_host_async' method is not available on {self._error_repr()}."
845845
f"{self._origin_msg()}")

0 commit comments

Comments
 (0)