소스 검색

Fix typo in GDNative C++ example (#5761)

Luis Adolfo Ramírez 3 년 전
부모
커밋
864cf130a2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tutorials/scripting/gdnative/gdnative_cpp_example.rst

+ 1 - 1
tutorials/scripting/gdnative/gdnative_cpp_example.rst

@@ -251,7 +251,7 @@ it. However, we do not have to tell Godot about our constructor, destructor and
 The other method of note is our ``_process`` function, which simply keeps track
 of how much time has passed and calculates a new position for our sprite using a
 sine and cosine function. What stands out is calling
-``owner->set_position`` to call one of the build in methods of our Sprite. This
+``owner->set_position`` to call one of the built-in methods of our Sprite. This
 is because our class is a container class; ``owner`` points to the actual Sprite
 node our script relates to.