← Back to team overview

linuxdcpp-team team mailing list archive

[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 3309: fix typos

 

------------------------------------------------------------
revno: 3309
committer: poy <poy@xxxxxxxxxx>
branch nick: trunk
timestamp: Tue 2013-06-04 19:13:00 +0200
message:
  fix typos
modified:
  dcpp/MappingManager.cpp
  help/faq_slowdownload.html
  utils/portmap.cpp


--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk

Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'dcpp/MappingManager.cpp'
--- dcpp/MappingManager.cpp	2013-01-18 21:28:38 +0000
+++ dcpp/MappingManager.cpp	2013-06-04 17:13:00 +0000
@@ -145,7 +145,7 @@
 
 		ScopedFunctor([&mapper] { mapper.uninit(); });
 		if(!mapper.init()) {
-			log(str(F_("Failed to initalize the %1% interface") % mapper.getName()));
+			log(str(F_("Failed to initialize the %1% interface") % mapper.getName()));
 			continue;
 		}
 

=== modified file 'help/faq_slowdownload.html'
--- help/faq_slowdownload.html	2013-03-21 23:03:56 +0000
+++ help/faq_slowdownload.html	2013-06-04 17:13:00 +0000
@@ -70,7 +70,7 @@
 	<placeholder><a href="window_download_queue.html">Download Queue</a></placeholder> or from the
 	<placeholder><a href="window_transfers.html">Transfers</a></placeholder> area and select the
 	<i>Search for alternates</i> command. A corresponding
-	<li><placeholder><a href="window_search.html">Search</a></placeholder></li> window will open,
+	<placeholder><a href="window_search.html">Search</a></placeholder> window will open,
 	the "Slots" column of the result list of which can be leveraged to find users with available
 	bandwidth.
 	</li>

=== modified file 'utils/portmap.cpp'
--- utils/portmap.cpp	2012-11-02 22:23:18 +0000
+++ utils/portmap.cpp	2013-06-04 17:13:00 +0000
@@ -84,10 +84,10 @@
 
 	ScopedFunctor([&mapper] { mapper.uninit(); });
 	if(!mapper.init()) {
-		cout << "Failed to initalize the " << mapper.getName() << " interface." << endl;
+		cout << "Failed to initialize the " << mapper.getName() << " interface." << endl;
 		return 2;
 	}
-	cout << "Successfully initalized the " << mapper.getName() << " interface." << endl;
+	cout << "Successfully initialized the " << mapper.getName() << " interface." << endl;
 
 	if(!mapper.open(argv[Port], tcp ? Mapper::PROTOCOL_TCP : Mapper::PROTOCOL_UDP, argv[Description])) {
 		cout << "Failed to map the " << argv[Port] << " " << (tcp ? "TCP" : "UDP") << " port with the " << mapper.getName() << " interface." << endl;