Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Morganamilo committed Jan 21, 2023
1 parent 70a616c commit 4780e94
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ Rebuild for openssl 3
### Changed

- Show all files in review 9830c74
- Skip review prompt when nothign to review 2a5e441
- Skip review prompt when nothing to review 2a5e441
- Improve local repo documentation


Expand Down Expand Up @@ -495,7 +495,7 @@ Rebuild for openssl 3
### Fixed

- Don't try to remove packages with -c when nothing to remove d3c668e
- Fix error if running `-Sy` with no tagets 95f5681
- Fix error if running `-Sy` with no targets 95f5681
- Hide warnings for debug packages b3e0fe0
- Don't try to install non existing devel packages 5e910d9
- Fix clean checking for wrong file type e9a260e
Expand Down Expand Up @@ -525,7 +525,7 @@ Rebuild for openssl 3
- Fix diffs breaking with `--cleanafter` 0b66f9c
- Fix provider menu formatting d7f100a
- Fix devel not handling split packages properly a9f47ea
- Fix rouge "info" object in devel.json d434467
- Fix rogue "info" object in devel.json d434467
- Fix version compare 30da3bd

### Added
Expand Down
6 changes: 3 additions & 3 deletions man/paru.8
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ Note that dependency resolution will still include repositoryi and AUR packages.
.TP
.B \-\-mode = aur|repo|pkgbuilds
Select what kinds of packages paru should act on. Multiple modes can be selected
by seperating them with a comma.
by separating them with a comma.

Additionally, a, r and p may be used as short hand for aur, repo and pkgbuilds respectivly.
Additionally, a, r and p may be used as short hand for aur, repo and pkgbuilds respectively.
Short form modes can also be combined without a comma.
E.g. \fB--mode=ar\fR or \fB--mode=arp\fR.

Expand Down Expand Up @@ -321,7 +321,7 @@ This enables fm review mode, where PKGBUILD review is done using the file
manager specified by command.

This allows the PKGBUILDs and related files to be edited. Changes won't
persist unless commited.
persist unless committed.

.TP
.B \-\-fmflags <flags>
Expand Down
4 changes: 2 additions & 2 deletions man/paru.conf.5
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ sysupgrade will only act on repository packages.
.TP
.B Mode = aur|repo|pkgbuilds
Select what kinds of packages paru should act on. Multiple modes can be selected
by seperating them with a comma.
by separating them with a comma.

Additionally, a, r and p may be used as short hand for aur, repo and pkgbuilds respectivly.
Additionally, a, r and p may be used as short hand for aur, repo and pkgbuilds respectively.
Short form modes can also be combined without a comma.
E.g. \fBMode = ar\fR or \fBMode = arp\fR.

Expand Down
4 changes: 2 additions & 2 deletions src/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub struct AurBase {
}

/// A package base.
/// This descripes packages that should be built then installed.
/// This describes packages that should be built then installed.
#[derive(Debug, Eq, Clone, PartialEq, Ord, PartialOrd, Hash)]
pub enum Base {
/// Aur packages.
Expand Down Expand Up @@ -144,7 +144,7 @@ impl Base {
}
}

/// Ammount of packages in this base.
/// Amount of packages in this base.
pub fn package_count(&self) -> usize {
match self {
Base::Aur(base) => base.pkgs.len(),
Expand Down

0 comments on commit 4780e94

Please sign in to comment.