From 887eaa528a5ec9faaccd9f3d6808e934b76fe71f Mon Sep 17 00:00:00 2001 From: dudaodong Date: Wed, 26 Jan 2022 14:57:37 +0800 Subject: [PATCH] update: algorithm package comment --- algorithm/sorter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithm/sorter.go b/algorithm/sorter.go index 512534a..1a3741f 100644 --- a/algorithm/sorter.go +++ b/algorithm/sorter.go @@ -1,7 +1,7 @@ // Copyright 2021 dudaodong@gmail.com. All rights reserved. // Use of this source code is governed by MIT license -// Package algorithm contain some basic algorithm functions. eg. sort, search, list, linklist, stack, queue, tree, graph. TODO +// Package algorithm contain some basic algorithm functions. eg. sort, search package algorithm import "github.com/duke-git/lancet/lancetconstraints"