Fix typos, and use panic instead of log.Fatal in doc.go (#1446)

Co-authored-by: Emanuel <7843818-fuyuaki@users.noreply.gitlab.com>
This commit is contained in:
Emanuel 2020-12-21 09:14:17 -03:00 committed by GitHub
parent 9a705c64f3
commit 1394fe284d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Contributing to Ebiten
Ebiten is an open source project and we would appricate your conributions!
Ebiten is an open source project and we would appreciate your contributions!
There are some rules for Ebiten contribution.

2
doc.go
View File

@ -40,7 +40,7 @@
//
// func main() {
// game := &Game{}
// // Sepcify the window size as you like. Here, a doulbed size is specified.
// // Specify the window size as you like. Here, a doubled size is specified.
// ebiten.SetWindowSize(640, 480)
// ebiten.SetWindowTitle("Your game's title")
// // Call ebiten.RunGame to start your game loop.