Skip to content

Commit

Permalink
fix: correct several typos
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Apr 19, 2024
1 parent b73180e commit 46c33c9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Then run `izrss` to read the feeds.

The main bulk of customization is done via the `~/.config/izrss/config.toml` file. You can find an example file here [config.toml](./example.toml).

The rest of the config is done via using the enviorment variables `GLAMOUR_STYLE`.
The rest of the config is done via using the environment variables `GLAMOUR_STYLE`.
For a good example see: [catppuccin/glamour](https://github.com/catppuccin/glamour)

### Nix
Expand Down
4 changes: 2 additions & 2 deletions lib/config.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Package lib common libary functtions
// Package lib common library functions
package lib

import (
Expand Down Expand Up @@ -45,7 +45,7 @@ func ParseUrls() []string {
return filteredUrls
}

// LoadConfig loads the users configuration file and applys it to the config struct
// LoadConfig loads the users configuration file and applies it to the config struct
func LoadConfig() {
configFile := getConfigFile("config.toml")
configRaw, err := os.ReadFile(configFile)
Expand Down
2 changes: 1 addition & 1 deletion lib/fetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func createPost(item *gofeed.Item) Post {
} else if item.Description != "" {
content = item.Description
} else {
content = "This post does not contain any content.\nPress \"o\" to open the post in your prefered browser"
content = "This post does not contain any content.\nPress \"o\" to open the post in your preferred browser"
}

post := Post{
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func main() {
CUSTOMIZATION:
The main bulk of customization is done via the "~/.config/izrss/config.toml" file. You can find an example file on the github page.
The rest of the config is done via using the enviorment variables "GLAMOUR_STYLE".
The rest of the config is done via using the environment variables "GLAMOUR_STYLE".
For a good example see: [catppuccin/glamour](https://github.com/catppuccin/glamour)
You can customise the colours using "GLAMOUR_STYLE" for a good example see https://github.com/catppuccin/glamour`,
cli.AppHelpTemplate,
Expand Down
2 changes: 1 addition & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildGoModule {
];

meta = {
description = "A RSS feed reader for the teminal";
description = "A RSS feed reader for the terminal";
homepage = "https://github.com/isabelroses/izrss";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [isabelroses];
Expand Down

0 comments on commit 46c33c9

Please sign in to comment.