diff options
author | randymcmillan <randy.lee.mcmillan@gmail.com> | 2019-11-04 04:22:53 -0500 |
---|---|---|
committer | randymcmillan <randy.lee.mcmillan@gmail.com> | 2019-11-04 04:22:53 -0500 |
commit | ac831339cbfa65b1f7576c53b5d9a94841db9868 (patch) | |
tree | 4a8262bfa2dd49b03261f8bc6e0e85dc189cd8bb /doc | |
parent | 463eab5e1418a592036e7bf9bf46f66fe6462435 (diff) |
doc: Fix some misspellings
Diffstat (limited to 'doc')
-rw-r--r-- | doc/developer-notes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index 1a7ce91ca6..1756648157 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -654,7 +654,7 @@ Strings and formatting - Do not use it to convert to `QString`. Use `QString::fromStdString()`. - - *Rationale*: Qt has build-in functionality for converting their string + - *Rationale*: Qt has built-in functionality for converting their string type from/to C++. No need to roll your own. - In cases where do you call `.c_str()`, you might want to additionally check that the string does not contain embedded '\0' characters, because |