]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix various typos
authorNick Mathewson <nickm@torproject.org>
Wed, 30 May 2018 14:57:22 +0000 (07:57 -0700)
committerNick Mathewson <nickm@torproject.org>
Wed, 30 May 2018 14:57:22 +0000 (07:57 -0700)
ReleaseNotes
scripts/test/appveyor-irc-notify.py
src/common/crypto_rand.h
src/test/test_controller.c

index d36f87eea3727bf4073c687f5d2a28ac4dfad7ad..5db4885926a88571f9c49a4e0fa1e088e499c8f1 100644 (file)
@@ -529,7 +529,7 @@ Changes in version 0.3.3.6 - 2018-05-22
       would call the Rust implementation of
       protover_get_supported_protocols(). This was due to the C version
       returning a static string, whereas the Rust version newly allocated
-      a CString to pass accross the FFI boundary. Consequently, the C
+      a CString to pass across the FFI boundary. Consequently, the C
       code was not expecting to need to free() what it was given. Fixes
       bug 25127; bugfix on 0.3.2.1-alpha.
 
index 44ef4c96fc5061bde270acc2b90be484ac6dc09c..4ffea52684142c16dc0428ca09780f861814934e 100644 (file)
@@ -169,7 +169,7 @@ def notify():
         response = line.split()
 
         if response[0] == 'PING':
-            irc_file.send('PONG {}\r\n'.format(reponse[1]).encode())
+            irc_file.send('PONG {}\r\n'.format(response[1]).encode())
 
         elif response[1] == '433':
             irc_sock.send('NICK {}\r\n'.format(irc_nick).encode())
index 4eac94f57b74db749bbd705ce32abf768b799992..bb02e51001ad255d06073542e1e93a8892647309 100644 (file)
@@ -7,7 +7,7 @@
 /**
  * \file crypto_rand.h
  *
- * \brief Common functions for using (psuedo-)random number generators.
+ * \brief Common functions for using (pseudo-)random number generators.
  **/
 
 #ifndef TOR_CRYPTO_RAND_H
index 3b58a78e1d6fec05f629cecfaa93efa33bade8f5..1a350f66c0537e65886ad7d3bf78a88f98c5683c 100644 (file)
@@ -1470,7 +1470,7 @@ test_download_status_bridge(void *arg)
   return;
 }
 
-/** Set timeval to a mock date and time. This is neccessary
+/** Set timeval to a mock date and time. This is necessary
  * to make tor_gettimeofday() mockable. */
 static void
 mock_tor_gettimeofday(struct timeval *timeval)