Skip to content

Use a single space after period #271

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Language/Functions/USB/Keyboard/keyboardPress.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ title: Keyboard.press()

[float]
=== 설명
`Keyboard.press()` 가 호출되면 키보드에서 키를 누른 상태로 유지되는 것처럼 작동합니다. link:../keyboardmodifiers[modifier keys]를 사용할 때 유용합니다. 키눌림을 끝내려면 link:../keyboardrelease[Keyboard.release()] 또는 link:../keyboardreleaseall[Keyboard.releaseAll()]를 사용하십시오.
`Keyboard.press()` 가 호출되면 키보드에서 키를 누른 상태로 유지되는 것처럼 작동합니다. link:../keyboardmodifiers[modifier keys]를 사용할 때 유용합니다. 키눌림을 끝내려면 link:../keyboardrelease[Keyboard.release()] 또는 link:../keyboardreleaseall[Keyboard.releaseAll()]를 사용하십시오.

`press()`를 사용하기전에 link:../keyboardbegin[Keyboard.begin()]를 호출해야합니다.
[%hardbreaks]
Expand Down
2 changes: 1 addition & 1 deletion Language/Structure/Pointer Access Operators/reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ subCategories: [ "포인터 액세스 연산자" ]

[float]
=== 설명
참조는 특별히 포인터와 함께 쓰이는 기능 중 하나다. 앰퍼샌드 연산자 `&` 가 이 목적에 쓰인다. `x` 가 변수면, `&x` 는 값 `x` 의 주소를 가리킨다.
참조는 특별히 포인터와 함께 쓰이는 기능 중 하나다. 앰퍼샌드 연산자 `&` 가 이 목적에 쓰인다. `x` 가 변수면, `&x` 는 값 `x` 의 주소를 가리킨다.
[%hardbreaks]

--
Expand Down