Skip to content

Commit

Permalink
Fix Wrapper Documentation. (#1870)
Browse files Browse the repository at this point in the history
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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>
  • Loading branch information
mustapha-belbiad authored and EmilyBourne committed May 13, 2024
1 parent a89774d commit 9ef22ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion developer_docs/wrapper_stage.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The entry point for the class `Wrapper` is the function `wrap`.
The `_wrap` function internally calls a function named `_wrap_X`, where `X` is the type of the object.
These functions must have the form:
```python
def _print_ClassName(self, stmt):
def _wrap_ClassName(self, stmt):
...
return Y
```
Expand Down

0 comments on commit 9ef22ae

Please sign in to comment.