Skip to content

Commit

Permalink
Merge pull request #17 from singam1/main
Browse files Browse the repository at this point in the history
Fix: Correct variable name in pos_or_neg lambda function
  • Loading branch information
shafu0x authored Aug 17, 2024
2 parents 0ad7934 + 82e1e33 commit 228a310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/07a_opcodes/02_math.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"metadata": {},
"outputs": [],
"source": [
"pos_or_neg = lambda number: -1 if value < 0 else 1"
"pos_or_neg = lambda number: -1 if number < 0 else 1"
]
},
{
Expand Down

0 comments on commit 228a310

Please sign in to comment.