Skip to content

Commit

Permalink
fix some type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayoub EL Mhamdi committed Nov 15, 2023
1 parent c7a9aa5 commit fc285dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Make use of vim's "conceal" feature to replace certain language keywords with un
import math

circle_area = lambda r: math.pi * r ** 2
sphere_vol = lambda r: 4 * math.pi * radius ** 3 / 3
random = lambda a, b, c, x, y: math.sqrt(sum(a, c, c))
sphere_vol = lambda r: 4 * math.pi * r ** 3 / 3
random = lambda a, b, c: math.sqrt(sum(a, b, c))
```

![screenshot](screen_shot.png "Screenshot")
Expand Down

0 comments on commit fc285dc

Please sign in to comment.