Verified Commit 676f9134 authored by Dimitris Apostolou's avatar Dimitris Apostolou
Browse files

Fix typos

parent a43b1ff9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ async fn launch_one_hop_dir_circ<R: Runtime>(
            Ok(_) => println!("[+] Successful one-hop circuit to: {:?}", fp),
        };
    } else {
        println!("Couldn not find a relay suitable for a directory request.");
        println!("Could not find a relay suitable for a directory request.");
    }
    Ok(())
}
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@
 *   (For example, `ArtiRpcObject **out`).  In such cases, `* out` will be set to a resulting object,
 *   or to NULL if no such object is returned.   Any earlier value of `*out` will be replaced
 *   without freeing it.
 *   (If `out` is NULL, then any object the library would have returned will instead be discareded.)
 *   (If `out` is NULL, then any object the library would have returned will instead be discarded.)
 *   discarded.
 *   While the function is running,
 *   `*out` and `**out` may not be read or written by any other part of the program,
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ header = """\
 *   (For example, `ArtiRpcObject **out`).  In such cases, `* out` will be set to a resulting object,
 *   or to NULL if no such object is returned.   Any earlier value of `*out` will be replaced
 *   without freeing it.
 *   (If `out` is NULL, then any object the library would have returned will instead be discareded.)
 *   (If `out` is NULL, then any object the library would have returned will instead be discarded.)
 *   discarded.
 *   While the function is running,
 *   `*out` and `**out` may not be read or written by any other part of the program,
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ pub use connimpl::RpcConn;

/// A handle to an open request.
///
/// These handles are crated with [`RpcConn::execute_with_handle`].
/// These handles are created with [`RpcConn::execute_with_handle`].
#[derive(educe::Educe)]
#[educe(Debug)]
pub struct RequestHandle {
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ pub(crate) enum FfiStatus {
    /// or that Arti wasn't running at the specified location.
    ///
    /// (This error was generated by the library.)
    ["An IO error ocurred while connecting to Arti"]
    ["An IO error occurred while connecting to Arti"]
    ConnectIo = 3,

    /// We tried to authenticate with Arti, but it rejected our attempt.
Loading