Skip to content

Commit 52f3081

Browse files
committed
fix typo
1 parent 00c71dc commit 52f3081

File tree

16 files changed

+24
-24
lines changed

16 files changed

+24
-24
lines changed

ChangeLog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
- NTCP soft and hard descriptors limits
6969
- Support full timestamps in logs
7070
### Changed
71-
- Faster implmentation of GOST R 34.11 hash
71+
- Faster implementation of GOST R 34.11 hash
7272
- Reject routers with RSA signtures
7373
- Reload config and shudown from Windows GUI
7474
- Update tunnels address(destination) without restart
@@ -168,7 +168,7 @@
168168
- Initial iOS support
169169

170170
### Changed
171-
- Reduced file descriptiors usage
171+
- Reduced file descriptors usage
172172
- Strict reseed checks enabled by default
173173

174174
## Fixed

build/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ if (CXX11_SUPPORTED)
190190
elseif (CXX0X_SUPPORTED) # gcc 4.6
191191
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x" )
192192
elseif (NOT MSVC)
193-
message(SEND_ERROR "C++11 standart not seems to be supported by compiler. Too old version?")
193+
message(SEND_ERROR "C++11 standard not seems to be supported by compiler. Too old version?")
194194
endif ()
195195

196196
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
@@ -340,7 +340,7 @@ target_link_libraries(libi2pdclient libi2pd)
340340

341341
find_package ( Boost COMPONENTS system filesystem program_options date_time REQUIRED )
342342
if(NOT DEFINED Boost_INCLUDE_DIRS)
343-
message(SEND_ERROR "Boost is not found, or your boost version was bellow 1.46. Please download Boost!")
343+
message(SEND_ERROR "Boost is not found, or your boost version was below 1.46. Please download Boost!")
344344
endif()
345345

346346
find_package ( OpenSSL REQUIRED )

daemon/HTTPServer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ namespace http {
862862
{
863863
/* deny request as it's from a non whitelisted hostname */
864864
res.code = 403;
865-
content = "host missmatch";
865+
content = "host mismatch";
866866
SendReply(res, content);
867867
return;
868868
}

debian/i2pd.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Router will use system folders like \fI/var/lib/i2pd\fR (\fIdisabled\fR by defau
9696
\fB\-\-family=\fR
9797
Name of a family, router belongs to.
9898
.PP
99-
Switchs, which enabled by default (like \fB\-\-ssu\fR, \fB\-\-ntcp\fR, etc.), can be disabled in config file.
99+
Switches, which enabled by default (like \fB\-\-ssu\fR, \fB\-\-ntcp\fR, etc.), can be disabled in config file.
100100
.RE
101101
See service-specific parameters in example config file \fI/usr/share/doc/i2pd/i2pd.conf.gz\fR
102102
.SH "FILES"

debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ DEB_BUILD_MAINT_OPTIONS=hardening=+bindnow
1717
override_dh_strip:
1818
dh_strip --dbg-package=i2pd-dbg
1919

20-
## uncoment this if you have "missing info" problem when building package
20+
## uncomment this if you have "missing info" problem when building package
2121
#override_dh_shlibdeps:
2222
# dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info

docs/Doxyfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ HTML_STYLESHEET =
10941094
# cascading style sheets that are included after the standard style sheets
10951095
# created by doxygen. Using this option one can overrule certain style aspects.
10961096
# This is preferred over using HTML_STYLESHEET since it does not replace the
1097-
# standard style sheet and is therefor more robust against future updates.
1097+
# standard style sheet and is therefore more robust against future updates.
10981098
# Doxygen will copy the style sheet files to the output directory.
10991099
# Note: The order of the extra stylesheet files is of importance (e.g. the last
11001100
# stylesheet in the list overrules the setting of the previous ones in the
@@ -1637,7 +1637,7 @@ EXTRA_PACKAGES =
16371637
# Note: Only use a user-defined header if you know what you are doing! The
16381638
# following commands have a special meaning inside the header: $title,
16391639
# $datetime, $date, $doxygenversion, $projectname, $projectnumber,
1640-
# $projectbrief, $projectlogo. Doxygen will replace $title with the empy string,
1640+
# $projectbrief, $projectlogo. Doxygen will replace $title with the empty string,
16411641
# for the replacement values of the other commands the user is referred to
16421642
# HTML_HEADER.
16431643
# This tag requires that the tag GENERATE_LATEX is set to YES.

libi2pd/Destination.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ namespace client
6464
{
6565
it = params->find (I2CP_PARAM_OUTBOUND_NICKNAME);
6666
if (it != params->end ()) m_Nickname = it->second;
67-
// otherwise we set deafult nickname in Start when we know local address
67+
// otherwise we set default nickname in Start when we know local address
6868
}
6969
}
7070
}

libi2pd/NetDb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ namespace data
734734
m_Requests.RequestComplete (ident, nullptr);
735735
}
736736
else
737-
// no more requests for detination possible. delete it
737+
// no more requests for destination possible. delete it
738738
m_Requests.RequestComplete (ident, nullptr);
739739
}
740740
else if(!m_FloodfillBootstrap)

libi2pd/Reseed.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ namespace data
300300
s.read (localFileName, fileNameLength);
301301
localFileName[fileNameLength] = 0;
302302
s.seekg (extraFieldLength, std::ios::cur);
303-
// take care about data desriptor if presented
303+
// take care about data descriptor if presented
304304
if (bitFlag & ZIP_BIT_FLAG_DATA_DESCRIPTOR)
305305
{
306306
size_t pos = s.tellg ();

libi2pd/Tunnel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ namespace tunnel
511511
HandleI2NPMessage (msg->GetBuffer (), msg->GetLength ());
512512
break;
513513
default:
514-
LogPrint (eLogWarning, "Tunnel: unexpected messsage type ", (int) typeID);
514+
LogPrint (eLogWarning, "Tunnel: unexpected message type ", (int) typeID);
515515
}
516516

517517
msg = m_Queue.Get ();

0 commit comments

Comments
 (0)