Skip to content

Commit e6d8efe

Browse files
committed
Fix spelling: replace "it's" with "its" where a possessive is meant
1 parent a8fcd99 commit e6d8efe

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

PUBLISHING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Read through this paragraph in its entirety before running anything.
66

7-
The Bash script in the root of the project, named `publish.sh` can be used to publish a new version of librespot and it's corresponding crates. the command should be used as follows from the project root: `./publish 0.1.0` from the project root, substituting the new version number that you wish to publish. *Note the lack of a v prefix on the version number. This is important, do not add one.* The v prefix is added where appropriate by the script.
7+
The Bash script in the root of the project, named `publish.sh` can be used to publish a new version of librespot and its corresponding crates. the command should be used as follows from the project root: `./publish 0.1.0` from the project root, substituting the new version number that you wish to publish. *Note the lack of a v prefix on the version number. This is important, do not add one.* The v prefix is added where appropriate by the script.
88

99
Make sure that you are are starting from a clean working directory for both `dev` and `master`, completely up to date with remote and all local changes either committed and pushed or stashed.
1010

docs/connection.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The client solves a challenge based on these two packets, and sends it back usin
3131
It also computes the shared keys used to encrypt the rest of the communication.
3232

3333
## Login challenge and cipher key computation.
34-
The client starts by computing the DH shared secret using it's private key and the server's public key.
34+
The client starts by computing the DH shared secret using its private key and the server's public key.
3535
HMAC-SHA1 is then used to compute the send and receive keys, as well as the login challenge.
3636

3737
```

metadata/src/artist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl_deref_wrapped!(AlbumGroup, Albums);
9191
/// [Album1], [Album2-relelease, Album2-older-release], [Album3]
9292
/// ]
9393
/// ```
94-
/// In most cases only the current variant of each album is needed. A list of every album in it's
94+
/// In most cases only the current variant of each album is needed. A list of every album in its
9595
/// current release variant can be obtained by using [`AlbumGroups::current_releases`]
9696
#[derive(Debug, Clone, Default)]
9797
pub struct AlbumGroups(pub Vec<AlbumGroup>);

playback/src/audio_backend/alsa.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ fn open_device(dev_name: &str, format: AudioFormat) -> SinkResult<(PCM, usize)>
262262
}
263263
}
264264
} else {
265-
trace!("The device's min reported Buffer size was greater than or equal to it's max reported Buffer size.");
265+
trace!("The device's min reported Buffer size was greater than or equal to its max reported Buffer size.");
266266
ZERO_FRAMES
267267
};
268268

@@ -328,7 +328,7 @@ fn open_device(dev_name: &str, format: AudioFormat) -> SinkResult<(PCM, usize)>
328328
}
329329
}
330330
} else {
331-
trace!("The device's min reported Period size was greater than or equal to it's max reported Period size,");
331+
trace!("The device's min reported Period size was greater than or equal to its max reported Period size,");
332332
trace!("or the desired min Period size was greater than or equal to the desired max Period size.");
333333
ZERO_FRAMES
334334
};

playback/src/player.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ impl NormalisationData {
386386
let limiting_db = factor_db + config.normalisation_threshold_dbfs.abs();
387387

388388
warn!(
389-
"This track may exceed dBFS by {:.2} dB and be subject to {:.2} dB of dynamic limiting at it's peak.",
389+
"This track may exceed dBFS by {:.2} dB and be subject to {:.2} dB of dynamic limiting at its peak.",
390390
factor_db, limiting_db
391391
);
392392
} else if factor > threshold_ratio {
@@ -395,7 +395,7 @@ impl NormalisationData {
395395
+ config.normalisation_threshold_dbfs.abs();
396396

397397
info!(
398-
"This track may be subject to {:.2} dB of dynamic limiting at it's peak.",
398+
"This track may be subject to {:.2} dB of dynamic limiting at its peak.",
399399
limiting_db
400400
);
401401
}

0 commit comments

Comments
 (0)