Started K::Result::Segment namespace
diff --git a/lib/Krawfish/Index/Store/V1/Dictionary.pm b/lib/Krawfish/Index/Store/V1/Dictionary.pm
index 9596980..82ca96a 100644
--- a/lib/Krawfish/Index/Store/V1/Dictionary.pm
+++ b/lib/Krawfish/Index/Store/V1/Dictionary.pm
@@ -400,6 +400,10 @@
 };
 
 
+# THE REST IS NOT NECESSARY WHEN STORING IN ALPHABETIC ORDER
+# FOR BINARY SEARCH OR SEQUENTIAL SEARCH
+
+
 # Sort the nodes to create
 # a complete binary search tree
 # see http://stackoverflow.com/questions/19301938/create-a-complete-binary-search-tree-from-list#26896494
diff --git a/lib/Krawfish/Result/Fields.pm b/lib/Krawfish/Result/Segment/Fields.pm
similarity index 89%
rename from lib/Krawfish/Result/Fields.pm
rename to lib/Krawfish/Result/Segment/Fields.pm
index 4a76f94..7534b29 100644
--- a/lib/Krawfish/Result/Fields.pm
+++ b/lib/Krawfish/Result/Segment/Fields.pm
@@ -1,4 +1,4 @@
-package Krawfish::Result::Fields;
+package Krawfish::Result::Segment::Fields;
 use parent 'Krawfish::Result';
 use Krawfish::Log;
 use Krawfish::Posting::Match;
@@ -7,6 +7,9 @@
 
 use constant DEBUG => 0;
 
+# This will enrich each match with specific field information
+# Needs to be called on the segment level
+
 # Constructor
 sub new {
   my $class = shift;