From 3d6a58bd92894e11ab57308c384215d844235a0d Mon Sep 17 00:00:00 2001 From: Archivist Date: Sat, 11 Aug 2018 16:54:01 +0200 Subject: [PATCH] Fixed an error in the readme and removed useless comments --- README.md | 2 +- spec/crystal-scatter_spec.cr | 1 - src/crystal-scatter.cr | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b21e2f9..0c4ab2d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Add this to your application's `shard.yml`: ```yaml dependencies: crystal-scatter: - git: https://git.nekoit.xyz/Archivist/sales_backend + git: https://git.nekoit.xyz/Archivist/crystal-scatter version: ~> 0.1.0 ``` diff --git a/spec/crystal-scatter_spec.cr b/spec/crystal-scatter_spec.cr index 01193b9..15ebe56 100644 --- a/spec/crystal-scatter_spec.cr +++ b/spec/crystal-scatter_spec.cr @@ -1,7 +1,6 @@ require "./spec_helper" describe Crystal::Scatter do - # TODO: Write tests it "add elements to RingGraphs" do rg = Crystal::Scatter::RingGraph.new diff --git a/src/crystal-scatter.cr b/src/crystal-scatter.cr index c5dfa0d..e067e47 100644 --- a/src/crystal-scatter.cr +++ b/src/crystal-scatter.cr @@ -1,6 +1,6 @@ require "./crystal-scatter/*" -# TODO: Write documentation for `Crystal::Scatter` + module Crystal::Scatter - # TODO: Put your code here + end