Skip to content

Commit 19eba45

Browse files
jstacclaude
andcommitted
Fix call to add_tax_pure in jax_intro pure function example
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3ea9f1a commit 19eba45

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lectures/jax_intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def add_tax_pure(prices, tax_rate):
383383
384384
tax_rate = 0.1
385385
prices = (10.0, 20.0)
386-
after_tax_prices = add_tax(prices)
386+
after_tax_prices = add_tax_pure(prices, tax_rate)
387387
after_tax_prices
388388
```
389389

0 commit comments

Comments
 (0)