diff --git a/.github/logo.png b/.github/logo.png
deleted file mode 100644
index 3dc7c67..0000000
Binary files a/.github/logo.png and /dev/null differ
diff --git a/README.md b/README.md
index b1cf5d3..4b160d8 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-
+
# RuleMiner.jl - Pattern Mining in Julia
diff --git a/docs/src/assets/logo.svg b/docs/src/assets/logo.svg
index 69a68e3..b58db1c 100644
--- a/docs/src/assets/logo.svg
+++ b/docs/src/assets/logo.svg
@@ -7,8 +7,34 @@
viewBox="0 0 200 80"
version="1.1"
id="svg1"
+ inkscape:export-filename="logo.png"
+ inkscape:export-xdpi="101.6"
+ inkscape:export-ydpi="101.6"
+ inkscape:version="1.3.2 (091e20e, 2023-11-25)"
+ sodipodi:docname="logo.svg"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
+
+ id="g2">
+ id="g1">
+ cx="33.917076"
+ cy="40.071098"
+ r="24.781096" />
+ transform="matrix(0.66082923,0,0,0.66082923,9.1359799,-61.117009)">
- =>
-
+ style="font-size:12px;font-family:'Fira Code';-inkscape-font-specification:'Fira Code, Normal';white-space:pre;fill:#4063d8;stroke-width:3.02362"
+ transform="matrix(4.2453467,0,0,4.2453467,-2015.875,-2271.8637)"
+ aria-label="=>
" />
-
+ [
-
-
+ [
-
+ style="font-size:12px;font-family:'Fira Code';-inkscape-font-specification:'Fira Code, Normal';white-space:pre;stroke-width:3.02362"
+ transform="matrix(-10.998168,0,0,10.998168,1047.727,-9823.1147)"
+ aria-label="[
" />
diff --git a/src/RuleMiner.jl b/src/RuleMiner.jl
index 1b21385..40f4003 100644
--- a/src/RuleMiner.jl
+++ b/src/RuleMiner.jl
@@ -1,5 +1,5 @@
# RuleMiner.jl
-# Asoociation Rule Mining in Julia
+# Pattern Mining in Julia
#=
Copyright (c) 2024 Jared Schwartz
@@ -28,7 +28,7 @@ module RuleMiner
using DataFrames
using Combinatorics
-# Stdlib Dependencies
+# Base and Standard Library Dependencies
using Mmap
using Base.Threads
using SparseArrays
@@ -52,7 +52,7 @@ include("data_structures/fputils.jl")
export FPNode
export FPTree
-#=============Assocition Rule Mining=============#
+#=============Association Rule Mining=============#
include("association_rules/apriori.jl")
export apriori