Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 1.1 KB

pr_to_sqlx_document.md

File metadata and controls

31 lines (18 loc) · 1.1 KB

再次阅读Rust类型与Mysql类型转换一览表时,发现了sqlx文档 的一处spell mistake

文档中有一处单词拼写错误:

chrono::DateTime<Utc>	TIMESTAMP
chrono::DateTime<Local>	TIMETAMP

docs.rs上的文档是通过cargo doc将代码的doc_string(一般是md语法)生成静态html文件

随便在网页文档上选一段话,通过搜索功能很快在找到Github源码文件

TIMETAMP应该是笔误,Mysql就没有TIMETAMP

于是fork到我repo,只修改了一行的话直接在github网页上改,然后提PR过去

我的commit message是:

Fix a misspelling in MySQL types document

PR的description:

Fix a spell mistake: "TIMETAMP" -> "TIMESTAMP"

翱翔 2021-10-02 评论: 当时我对 git, CI, 开源社区常用术语不太熟练,其实 commit message 叫 fix a typo 就好了