diff options
author | Adam <adamdharrison@gmail.com> | 2023-11-27 10:10:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 10:10:02 -0500 |
commit | 4801afb445822ac5b2bee3230dd3ef8de17b1532 (patch) | |
tree | d5320577c6e7f1403059c5994c0403a3f3a70f9f /src/lpm.c | |
parent | 8f2cd874ddc57793a08a9b6bdb5172c25802a5e0 (diff) | |
parent | f0426efa4fb38b23ee504d69a84ff1afdcbb486d (diff) | |
download | lite-xl-plugin-manager-4801afb445822ac5b2bee3230dd3ef8de17b1532.tar.gz lite-xl-plugin-manager-4801afb445822ac5b2bee3230dd3ef8de17b1532.zip |
Merge pull request #52 from Guldoman/PR_fix_spelling
Fix some spelling and display of `DEFAULT_REPO_URL` in cli help
Diffstat (limited to 'src/lpm.c')
-rw-r--r-- | src/lpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -746,7 +746,7 @@ static int lpm_extract(lua_State* L) { } if (strstr(src, ".tar")) { mtar_t tar = {0}; - /* It's increidbly slow to do it this way, probably because of all the seeking. + /* It's incredibly slow to do it this way, probably because of all the seeking. For now, just gunzip the whole file at once, and then untar it. tar.read = gzip_read; tar.seek = gzip_seek; |