diff options
author | Florian Klink <flokli@flokli.de> | 2023-06-19T14·49+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-06-19T22·54+0000 |
commit | 6656b865b608f7417b5a4b5df1e20811f48c7a82 (patch) | |
tree | 708b37e31cfdd695cc34affc45760836fd5961b2 /tvix/store/src/pathinfoservice | |
parent | 09486d483c7ad3e4f873f684ffa62e634a7ee519 (diff) |
docs(tvix/store): correct some cargo doc warnings r/6335
Change-Id: I5053e3f7dcea01e75baa933e4986396583ff22e8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8831 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/store/src/pathinfoservice')
-rw-r--r-- | tvix/store/src/pathinfoservice/grpc.rs | 2 | ||||
-rw-r--r-- | tvix/store/src/pathinfoservice/sled.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tvix/store/src/pathinfoservice/grpc.rs b/tvix/store/src/pathinfoservice/grpc.rs index a14f51c9f890..db9fd63366ea 100644 --- a/tvix/store/src/pathinfoservice/grpc.rs +++ b/tvix/store/src/pathinfoservice/grpc.rs @@ -16,7 +16,7 @@ pub struct GRPCPathInfoService { } impl GRPCPathInfoService { - /// construct a [GRPCDirectoryService] from a [proto::path_info_service_client::PathInfoServiceClient<Channel>]. + /// construct a [GRPCPathInfoService] from a [proto::path_info_service_client::PathInfoServiceClient]. /// panics if called outside the context of a tokio runtime. pub fn from_client( grpc_client: proto::path_info_service_client::PathInfoServiceClient<Channel>, diff --git a/tvix/store/src/pathinfoservice/sled.rs b/tvix/store/src/pathinfoservice/sled.rs index 3e5811b1d6ef..2448b073c622 100644 --- a/tvix/store/src/pathinfoservice/sled.rs +++ b/tvix/store/src/pathinfoservice/sled.rs @@ -50,7 +50,7 @@ impl SledPathInfoService { } impl PathInfoService for SledPathInfoService { - /// Constructs a [SledBlobService] from the passed [url::Url]: + /// Constructs a [SledPathInfoService] from the passed [url::Url]: /// - scheme has to be `sled://` /// - there may not be a host. /// - a path to the sled needs to be provided (which may not be `/`). |