소스 검색

Merge pull request #10339 from ntlblpm/patch-7

Fix typos in Saving games
Max Hilbrunner 8 달 전
부모
커밋
40bce845f5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tutorials/io/saving_games.rst

+ 1 - 1
tutorials/io/saving_games.rst

@@ -61,7 +61,7 @@ Serializing
 The next step is to serialize the data. This makes it much easier to
 read from and store to disk. In this case, we're assuming each member of
 group Persist is an instanced node and thus has a path. GDScript
-has helper class :ref:`JSON<class_json>` to convert between dictionary and string,
+has the helper class :ref:`JSON<class_json>` to convert between dictionary and string.
 Our node needs to contain a save function that returns this data.
 The save function will look like this: