From d5be9009fc5a88b8dbdd1715a0df90a09a0e95a5 Mon Sep 17 00:00:00 2001 From: dudaodong Date: Tue, 31 May 2022 21:43:26 +0800 Subject: [PATCH] docs: update list doc --- docs/datastructure/list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/datastructure/list.md b/docs/datastructure/list.md index e9d5da9..7ad3715 100644 --- a/docs/datastructure/list.md +++ b/docs/datastructure/list.md @@ -13,7 +13,7 @@ List is a linear table, implemented with slice. ## Usage ```go import ( - "github.com/duke-git/lancet/v2/datastructure" + list "github.com/duke-git/lancet/v2/datastructure/list" ) ```