diff --git a/build/index.php b/build/index.php index 4d4c23c..edef5e4 100644 --- a/build/index.php +++ b/build/index.php @@ -1673,7 +1673,7 @@ register_module([ "name" => "Search", "version" => "0.2", "author" => "Starbeamrainbowlabs", - "description" => "Adds proper search functionality to Pepperminty Wiki. Note that this module, at the moment, just contains test code while I figure out how best to write a search engine.", + "description" => "Adds proper search functionality to Pepperminty Wiki using an inverted index to provide a full text search engine. If pages don't show up, then you might have hit a stop word. If not, try requesting the `invindex-rebuild` action to rebuild the inverted index from scratch.", "id" => "feature-search", "code" => function() { diff --git a/module_index.json b/module_index.json index b9d6efb..0688b3c 100644 --- a/module_index.json +++ b/module_index.json @@ -57,9 +57,9 @@ "name": "Search", "version": "0.2", "author": "Starbeamrainbowlabs", - "description": "Adds proper search functionality to Pepperminty Wiki. Note that this module, at the moment, just contains test code while I figure out how best to write a search engine.", + "description": "Adds proper search functionality to Pepperminty Wiki using an inverted index to provide a full text search engine. If pages don't show up, then you might have hit a stop word. If not, try requesting the `invindex-rebuild` action to rebuild the inverted index from scratch.", "id": "feature-search", - "lastupdate": 1451135184, + "lastupdate": 1457808707, "optional": false }, { diff --git a/modules/feature-search.php b/modules/feature-search.php index aaa8c4f..42ac94b 100644 --- a/modules/feature-search.php +++ b/modules/feature-search.php @@ -3,7 +3,7 @@ register_module([ "name" => "Search", "version" => "0.2", "author" => "Starbeamrainbowlabs", - "description" => "Adds proper search functionality to Pepperminty Wiki. Note that this module, at the moment, just contains test code while I figure out how best to write a search engine.", + "description" => "Adds proper search functionality to Pepperminty Wiki using an inverted index to provide a full text search engine. If pages don't show up, then you might have hit a stop word. If not, try requesting the `invindex-rebuild` action to rebuild the inverted index from scratch.", "id" => "feature-search", "code" => function() {