Skip to main content

Remove a half-finished sentence

ID
6dace4f
date
2024-05-17 07:30:25+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
aaa5919
message
Remove a half-finished sentence
changed files
1 file, 2 additions, 4 deletions

Changed files

README.md (2308) → README.md (2249)

diff --git a/README.md b/README.md
index aacf443..acc074d 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ This tool creates [Safari webarchive files](https://en.wikipedia.org/wiki/Webarc
 This gives you an offline archive of web pages, which can be stored and backed up independently of any cloud services.
 
 ```console
-$ save_safari_webarchive.swift "https://example.com" "example.webarchive"
+$ save_safari_webarchive "https://example.com" "example.webarchive"
 ```
 
 These archives are the same as those created by the `File > Save As…` menu item, but now you can create them programatically and in bulk.
@@ -47,11 +47,9 @@ Run the script passing two arguments: the URL you want to archive, and the path 
 For example, this command will save the URL to this GitHub repo to `safari-webarchiver.webarchive`:
 
 ```console
-$ save_safari_webarchive.swift "https://github.com/alexwlchan/safari-webarchiver" "safari-webarchiver.webarchive"
+$ save_safari_webarchive "https://github.com/alexwlchan/safari-webarchiver" "safari-webarchiver.webarchive"
 ```
 
-It will refuse to overwrite a webarchvie that
-
 ## Acknowledgements
 
 This is partially inspired by [a similar script](https://github.com/newzealandpaul/webarchiver) written in 2008 by newzealandpaul.