Skip to content

Commit

Permalink
fix: update built-in-functions.rst (#2521)
Browse files Browse the repository at this point in the history
fix a typo 

Before  def foo(s: string[32]) -> string[5]:

After def foo(s: String[32]) -> String[5]:
  • Loading branch information
SwapOperator authored Nov 4, 2021
1 parent 98eff0a commit f31bd4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/built-in-functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ Data Manipulation
@external
@view
def foo(s: string[32]) -> string[5]:
def foo(s: String[32]) -> String[5]:
return slice(s, 4, 5)
.. code-block:: python
Expand Down

0 comments on commit f31bd4a

Please sign in to comment.