Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos #110

Merged
merged 1 commit into from
Apr 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ Logical sizes are reported by default but you can toggle the reporting to physic
### How are directory sizes computed

- A directory will have a size equal to the sum of the sizes of all of its entries.
- Hidden files, files excluded by `.gitignore`, and files excluded via globbing will be ommitted from the disk usages of their parent directories.
- Files/Directories that don't have read permissions will be ommitted from the disk usages of their parent directories.
- Hidden files, files excluded by `.gitignore`, and files excluded via globbing will be omitted from the disk usages of their parent directories.
- Files/Directories that don't have read permissions will be omitted from the disk usages of their parent directories.
- Special files such a named pipes, sockets, etc. have negligible sizes so their disk usage aren't reported.

### Symlinks
Expand Down
2 changes: 1 addition & 1 deletion src/render/context/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fn config() {

let icons = context.icons;

assert!(icons, "Failed to propertly read 'icons' from config");
assert!(icons, "Failed to properly read 'icons' from config");
}

fn context_from_config() -> Option<Context> {
Expand Down