diff options
Diffstat (limited to 'docs/examples/tutorial/string/api_func.pyx')
-rw-r--r-- | docs/examples/tutorial/string/api_func.pyx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/tutorial/string/api_func.pyx b/docs/examples/tutorial/string/api_func.pyx index 99a20b618..ec6b27751 100644 --- a/docs/examples/tutorial/string/api_func.pyx +++ b/docs/examples/tutorial/string/api_func.pyx @@ -1,5 +1,5 @@ -from to_unicode cimport _ustring
+from to_unicode cimport _text
def api_func(s):
- text = _ustring(s)
+ text_input = _text(s)
# ...
|