Skip to content

Commit 7502c05

Browse files
author
Roberto De Ioris
authored
Merge pull request 20tab#436 from HughMacdonald/subclassing_doc_fix
Fix misnamed method in Subclassing API docs
2 parents 6ba51a9 + 3a91404 commit 7502c05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Subclassing_API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class Hero(Character):
173173
# this new static method will be available to blueprints
174174
def FunnyStaticMethod():
175175
ue.print_string('I am a static method')
176-
FunnyNewMethod.static = True
176+
FunnyStaticMethod.static = True
177177
```
178178

179179
Events can be easily exposed like this:

0 commit comments

Comments
 (0)