Skip to content

Commit

Permalink
Undo incorrect fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb committed Apr 22, 2024
1 parent 2838e2e commit 4ebb5ee
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@

- **pretty**: `pls` output is cleaner, friendlier and more colorful.
- **powerful**: `pls` provides more features than the competition.
- **performing**: `pls` is speedy and performing (written in Rust).
- **performant**: `pls` is speedy and performant (written in Rust).
- **practical**: `pls` has sensible defaults and an effortless interface.
- **petite**: `pls` is a small, single-file, binary executable.
- **pliable**: `pls` can be extensively tweaked by power users and pros.
- **personable**: `pls` prioritizes consumption by humans over scripts.
- **personable**: `pls` prioritises consumption by humans over scripts.

Pick whichever adjective helps you remember the command name.

Expand Down
4 changes: 2 additions & 2 deletions docs/src/content/docs/about/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ deep customisation.
**Why Rust and not _<language>_?**

Rust is a good choice for CLI utilities because it enables them to be very
performing. The pros don't want to see lag in a core part of your workflow.
performant. The pros don't want to see lag in a core part of your workflow.

Before, I learned Rust, <Pls /> was written in Python (which was another reason
Before I learned Rust, <Pls /> was written in Python (which was another reason
it's called <Pls />). It seemed like a good fit at the time because it was
decently fast and easy to develop and distribute, but at a certain point Python
started becoming a speed bottleneck. The point being, give me a good reason, and
Expand Down
4 changes: 2 additions & 2 deletions docs/src/content/docs/about/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ your directories, and searching for specific files, effortless.
<Pls /> providers more features than the competition. It uses a cascading
config system with specs.
</Card>
<Card title="Performing" icon="rocket">
<Pls /> is speedy and performing (written in Rust). It continues to be fast
<Card title="Performant" icon="rocket">
<Pls /> is speedy and performant (written in Rust). It continues to be fast
even with all features enabled.
</Card>
<Card title="Practical" icon="approve-check">
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/features/detail_view.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ pls --det=all # or -d=all

## Configuration

Each of the detail fields is deeply customizable. Read on to know more the
Each of the detail fields is deeply customisable. Read on to know more the
customisation options supported by each field.

### Fields
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! `pls` supports customisation in two ways, through CLI arguments that change
//! the output per session and through `.pls.yml` YAML files that can go deeper
//! to tweak each individual string, change icons and add new node specs.
//! Together they make `pls` the most customizable file lister.
//! Together they make `pls` the most customisable file lister.
//!
//! For example, the CLI arg `--det` controls what metadata columns must be
//! shown in a given run, whereas the `.pls.yml` file can be used to change the
Expand Down

0 comments on commit 4ebb5ee

Please sign in to comment.