Skip to content

Commit 766809a

Browse files
committed
chore(doc): fix slightly broken docstring which ended as a comment
1 parent 22728b9 commit 766809a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tfhe/src/high_level_api/keys/server.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ use std::sync::Arc;
2424
///
2525
/// For a server to be able to do some FHE computations, the client needs to send this key
2626
/// beforehand.
27-
// Keys are stored in an Arc, so that cloning them is cheap
28-
// (compared to an actual clone hundreds of MB / GB), and cheap cloning is needed for
29-
// multithreading with less overhead)
27+
///
28+
/// Keys are stored in an Arc, so that cloning them is cheap
29+
/// (compared to an actual clone hundreds of MB / GB), and cheap cloning is needed for
30+
/// multithreading with less overhead)
3031
#[derive(Clone, Versionize)]
3132
#[versionize(ServerKeyVersions)]
3233
pub struct ServerKey {

0 commit comments

Comments
 (0)