File tree 6 files changed +7
-7
lines changed
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ please raise an issue so that we can clarify this document.
86
86
87
87
# # Local development setup
88
88
89
- NativeLink ships almost all of it ' s tooling in a nix flake which is configured
89
+ NativeLink ships almost all of its tooling in a nix flake which is configured
90
90
via a [` flake.nix` ](./flake.nix) file in the root of the repository. While it' s
91
91
possible to work on some parts of the codebase without this environment, it' ll
92
92
make your life much easier since it lets you reproduce most of CI locally.
@@ -390,7 +390,7 @@ bazel test doctests
390
390
391
391
NativeLink largely follows the [ Microsoft Style Guide] ( https://learn.microsoft.com/en-us/style-guide/welcome/ ) .
392
392
393
- NativeLink implements it's documentation style guide via Vale. The pre-commit
393
+ NativeLink implements its documentation style guide via Vale. The pre-commit
394
394
hooks forbid errors but permit warnings and suggestions. To view all of Vale's
395
395
suggestions invoke it directly:
396
396
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ pub struct SimpleScheduler {
87
87
/// The property names here must match the property keys provided by the
88
88
/// worker nodes when they join the pool. In other words, the workers will
89
89
/// publish their capabilities to the scheduler when they join the worker
90
- /// pool. If the worker fails to notify the scheduler of it's (for example)
90
+ /// pool. If the worker fails to notify the scheduler of its (for example)
91
91
/// "cpu_arch", the scheduler will never send any jobs to it, if all jobs
92
92
/// have the "cpu_arch" label. There is no special treatment of any platform
93
93
/// property labels other and entirely driven by worker configs and this
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ impl ByteStreamServer {
246
246
let ( tx, rx) = make_buf_channel_pair ( ) ;
247
247
let store_update_fut = Box :: pin ( async move {
248
248
// We need to wrap `Store::update()` in a another future because we need to capture
249
- // `store` to ensure it's lifetime follows the future and not the caller.
249
+ // `store` to ensure its lifetime follows the future and not the caller.
250
250
store
251
251
// Bytestream always uses digest size as the actual byte size.
252
252
. update (
Original file line number Diff line number Diff line change @@ -989,7 +989,7 @@ async fn rename_on_insert_fails_due_to_filesystem_error_proper_cleanup_happens()
989
989
// Delete may happen on another thread, so wait for it.
990
990
FILE_DELETED_BARRIER . wait ( ) . await ;
991
991
992
- // Now it should have cleaned up it's temp files.
992
+ // Now it should have cleaned up its temp files.
993
993
{
994
994
// Ensure `temp_path` is empty.
995
995
let ( _permit, dir_handle) = fs:: read_dir ( & temp_path) . await ?. into_inner ( ) ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl State {
30
30
/// normal conditions all the chunk boundaries will be identical except the ones near
31
31
/// the mutations.
32
32
///
33
- /// This is not very useful on it's own, but is extremely useful because we can pair
33
+ /// This is not very useful on its own, but is extremely useful because we can pair
34
34
/// this together with a hash algorithm (like sha256) to then hash each chunk and
35
35
/// then check to see if we already have the sha256 somewhere before attempting to
36
36
/// upload the file. If the file does exist, we can skip the chunk and continue then
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ const SLASH_SIZE: usize = 1;
78
78
// uploads/{uuid}/blobs/ {hash}/{size}
79
79
//
80
80
81
- // Useful utility struct for converting bazel's (uri-like path) into it's parts.
81
+ // Useful utility struct for converting bazel's (uri-like path) into its parts.
82
82
#[ derive( Debug , Default ) ]
83
83
pub struct ResourceInfo < ' a > {
84
84
pub instance_name : Cow < ' a , str > ,
You can’t perform that action at this time.
0 commit comments