Skip to content

Commit

Permalink
spelling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbreckenridge committed Sep 23, 2023
1 parent 375771b commit 5cca51b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ added 2022-03-08 12:14:45 (C) 2022-03-08 create shebang script +programming
removed 2022-03-08 13:14:58 (C) 2022-03-08 create shebang script +programming
added 2022-03-08 22:23:39 save formhistory.sqlite in browserexport
removed 2022-03-08 23:23:45 save formhistory.sqlite in browserexport
added 2022-03-09 02:49:58 (C) create a python fzf wrapper because apparently I cant find a good one
added 2022-03-09 02:49:58 (C) create a python fzf wrapper because apparently I can't find a good one
added 2022-03-10 16:24:24 (B) 2022-03-10 create plaintext playlist parser module +music
removed 2022-03-11 01:30:49 (B) 2022-03-10 create plaintext playlist parser module +music
added 2022-03-11 10:37:06 (C) 2022-03-11 sync tmux from home directory +programming
Expand Down
2 changes: 1 addition & 1 deletion git_doc_history/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def extract_buffer_at(self, file: str, at: datetime) -> bytes:

class Diff(NamedTuple):
"""
A diff -- whats changed from one git snapshot to the next
A diff -- what has changed from one git snapshot to the next
"""

epoch_time: int
Expand Down
2 changes: 1 addition & 1 deletion git_doc_history/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def extract_file_at(at: str, config: str, extract_file: str, output_file: str) -
conf = DocHistory.from_dict(parse_config(resolve_config(config)))
dt = dateparser.parse(at)
if dt is None:
click.echo(f"Couldnt parse {at} into a datetime", err=True)
click.echo(f"Couldn't parse {at} into a datetime", err=True)
sys.exit(1)

data_bytes = conf.extract_buffer_at(extract_file, naive_dt(dt))
Expand Down

0 comments on commit 5cca51b

Please sign in to comment.