Skip to content

Commit cd84286

Browse files
committed
chore: fix new clippy rule empty_line_after_doc_comments
> error: empty line after doc comment > --> volo-thrift/src/codec/default/thrift.rs:37:5 > | > 37 | / /// This is unimplemented yet. > 38 | | // pub fn with_multiplex(mut self, multiplex: bool) -> Self { > 39 | | // self.multiplex = multiplex; > 40 | | // self > 41 | | // } > 42 | | > | |_ > ... > 45 | pub fn with_protocol(mut self, protocol: Protocol) -> Self { > | ---------------------------------------------------------- the comment documents this method > | > = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments > = note: `-D clippy::empty-line-after-doc-comments` implied by `-D warnings` > = help: to override `-D warnings` add `#[allow(clippy::empty_line_after_doc_comments)]` > = help: if the empty line is unintentional remove it > help: if the doc comment should not document `with_protocol` comment it out > | > 29 ~ // /// Whether to use thrift multiplex protocol. > 30 ~ // /// > 31 ~ // /// When the multiplexed protocol is used, the name contains the service name, > 32 ~ // /// a colon : and the method name. The multiplexed protocol is not compatible > 33 ~ // /// with other protocols. > 34 ~ // /// > 35 ~ // /// Spec: <https://github.com/apache/thrift/blob/master/doc/specs/thrift-rpc.md> > 36 ~ // /// > 37 ~ // /// This is unimplemented yet. > | > > error: could not compile `volo-thrift` (lib) due to 1 previous error Signed-off-by: Yu Li <[email protected]>
1 parent 2134818 commit cd84286

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

volo-grpc/src/status.rs

-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ impl Status {
169169
}
170170

171171
/// Create a new [`Status`] with the associated code and message.
172-
173172
pub fn new(code: Code, message: impl Into<String>) -> Self {
174173
Self {
175174
code,

volo-thrift/src/codec/default/thrift.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ impl MakeThriftCodec {
2626
}
2727
}
2828

29-
/// Whether to use thrift multiplex protocol.
30-
///
31-
/// When the multiplexed protocol is used, the name contains the service name,
32-
/// a colon : and the method name. The multiplexed protocol is not compatible
33-
/// with other protocols.
34-
///
35-
/// Spec: <https://github.com/apache/thrift/blob/master/doc/specs/thrift-rpc.md>
36-
///
37-
/// This is unimplemented yet.
29+
// /// Whether to use thrift multiplex protocol.
30+
// ///
31+
// /// When the multiplexed protocol is used, the name contains the service name,
32+
// /// a colon : and the method name. The multiplexed protocol is not compatible
33+
// /// with other protocols.
34+
// ///
35+
// /// Spec: <https://github.com/apache/thrift/blob/master/doc/specs/thrift-rpc.md>
36+
// ///
37+
// /// This is unimplemented yet.
3838
// pub fn with_multiplex(mut self, multiplex: bool) -> Self {
3939
// self.multiplex = multiplex;
4040
// self

0 commit comments

Comments
 (0)