소스 검색

Issue. Fix "is is read" and "the to create" typo. (#92)

* Fix is is read typo.

* Fix need the to create typo.
Pavel Zavoiskikh 5 년 전
부모
커밋
2e4a975173
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      docs/en/manuals/android.md
  2. 1 1
      docs/en/manuals/application-lifecycle.md

+ 1 - 1
docs/en/manuals/android.md

@@ -19,7 +19,7 @@ You can find more information from the [Google Play developer console](https://p
 
 ## Creating certificates and keys
 
-You need the to create certificates in *.pem*-format and keys in *.pk8*-format. You can generate these with the `openssl` tool:
+You need to create certificates in *.pem*-format and keys in *.pk8*-format. You can generate these with the `openssl` tool:
 
 ```sh
 $ openssl genrsa -out key.pem 2048

+ 1 - 1
docs/en/manuals/application-lifecycle.md

@@ -68,7 +68,7 @@ The update loop runs through a long sequence once every frame. The update sequen
 
 ## Input
 
-Input is is read from available devices, mapped against [input bindings](/manuals/input) and then dispatched. Any game object that has acquired input focus gets input sent to all its components' `on_input()` functions. A game object with a script component and a GUI component with a GUI script will get input to both components’ `on_input()` functions---given that they are defined and that they have acquired input focus.
+Input is read from available devices, mapped against [input bindings](/manuals/input) and then dispatched. Any game object that has acquired input focus gets input sent to all its components' `on_input()` functions. A game object with a script component and a GUI component with a GUI script will get input to both components’ `on_input()` functions---given that they are defined and that they have acquired input focus.
 
 Any game object that has acquired input focus and contains collection proxy components dispatches input to components inside the proxy collection. This process continues recursively down enabled collection proxies within enabled collection proxies.