Fix some typos in code and cmake comments

This commit is contained in:
yangfl 2018-01-11 13:38:48 +08:00
parent 2fbed5b4c5
commit 449c3f12cc
3 changed files with 3 additions and 3 deletions

View File

@ -331,7 +331,7 @@
### Merged PRs:
- [#207](https://github.com/TokTok/c-toxcore/pull/207) docs: correct instructions for cloning & harden agains repo name changes
- [#207](https://github.com/TokTok/c-toxcore/pull/207) docs: correct instructions for cloning & harden against repo name changes
- [#206](https://github.com/TokTok/c-toxcore/pull/206) Corrected libsodium tag
- [#204](https://github.com/TokTok/c-toxcore/pull/204) Error if format_test can't be executed.
- [#202](https://github.com/TokTok/c-toxcore/pull/202) Version Patch v0.0.2

View File

@ -90,7 +90,7 @@ group_test_restart:
int test_run = 0;
long long unsigned int cur_time = time(NULL);
struct Tox_Options *opts = tox_options_new(NULL);
/* FIXME: Currenly here is problems with IPv6 */
/* FIXME: Currently here is problems with IPv6 */
tox_options_set_ipv6_enabled(opts, false);
for (i = 0; i < NUM_GROUP_TOX; ++i) {

View File

@ -142,7 +142,7 @@ function(target_link_modules target)
# If it's neither, then it's an executable.
if(NOT _targets)
set(_targets ${_targets} ${target})
# Executables preferrably link against static libraries, so they are
# Executables preferably link against static libraries, so they are
# standalone and can be shipped without any external dependencies. As a
# frame of reference: nTox becomes an 1.3M binary instead of 139K on x86_64
# Linux.