Skip to content

Commit 0305011

Browse files
Fix Wrapper Documentation. (pyccel#1870)
Correct a small issue in the wrapper documentation : From : ```python def _print_ClassName(self, stmt): ... return Y ``` To : ```python def _wrap_ClassName(self, stmt): ... return Y ``` Co-authored-by: mustapha-belbiad <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>
1 parent fa5ea32 commit 0305011

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

developer_docs/wrapper_stage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The entry point for the class `Wrapper` is the function `wrap`.
2020
The `_wrap` function internally calls a function named `_wrap_X`, where `X` is the type of the object.
2121
These functions must have the form:
2222
```python
23-
def _print_ClassName(self, stmt):
23+
def _wrap_ClassName(self, stmt):
2424
...
2525
return Y
2626
```

0 commit comments

Comments
 (0)