aboutsummaryrefslogtreecommitdiff
path: root/src/lpm.c
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-11-27 10:42:51 -0500
committerAdam Harrison <adamdharrison@gmail.com>2023-11-27 10:42:51 -0500
commit014ba97bf39a1fc6df76f8c3710581a021a1f158 (patch)
tree18ec6b2cb12da39cba98d00b02b9eb2169ae9559 /src/lpm.c
parentfd31dcacfd2be3ff9f4cb45263ea3ee2562af00d (diff)
parent4801afb445822ac5b2bee3230dd3ef8de17b1532 (diff)
downloadlite-xl-plugin-manager-014ba97bf39a1fc6df76f8c3710581a021a1f158.tar.gz
lite-xl-plugin-manager-014ba97bf39a1fc6df76f8c3710581a021a1f158.zip
Merge branch 'master' of github.com:adamharrison/lite-xl-plugin-manager
Diffstat (limited to 'src/lpm.c')
-rw-r--r--src/lpm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.c b/src/lpm.c
index 39b2084..692f9fc 100644
--- a/src/lpm.c
+++ b/src/lpm.c
@@ -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;