From 8fb96e377ed2fa0c0ab707425b862363a29be859 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sun, 28 May 2023 17:43:10 -0700 Subject: Fix copy/paste error; Improve README.md --- README.md | 2 +- src/lib/insert | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7fb5e46..774f7de 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ This file will build the docset. ### `src/icon.png` -If you want to associate an icon with the docset, it should be saved to `src/icon.png`. +If you want to associate an icon with the docset, it should be saved to `src/icon.png`. Make sure to uncomment the corresponding line in `Makefile` to include the icon in the docset. ### `src/index.sh` diff --git a/src/lib/insert b/src/lib/insert index baa13bd..31c1b4c 100644 --- a/src/lib/insert +++ b/src/lib/insert @@ -4,5 +4,5 @@ insert() { TYPE="$3" PAGE_PATH="$4" - sqlite3 "$DB_PATH" "INSERT INTO searchIndex(name, type, path) VALUES (\"$NAME\",\"$TYPE\",\"libc/$PAGE_PATH\");" + sqlite3 "$DB_PATH" "INSERT INTO searchIndex(name, type, path) VALUES (\"$NAME\",\"$TYPE\",\"$PAGE_PATH\");" } -- cgit