diff --git a/docs/examples/go-ipfs-as-a-library/main.go b/docs/examples/go-ipfs-as-a-library/main.go
index 48b6808455756df517049686f4bb5f0bb3b22e30..55eb157f65ecd6ee1957d7258e9579c654ba5eeb 100644
--- a/docs/examples/go-ipfs-as-a-library/main.go
+++ b/docs/examples/go-ipfs-as-a-library/main.go
@@ -57,10 +57,6 @@ func createTempRepo(ctx context.Context) (string, error) {
 	if err != nil {
 		return "", err
 	}
-	
-	// Add your custom configuration to the repository config
-	// For example, you can enable sharding with:
-	// cfg.Experimental.ShardingEnabled = true
 
 	// Create the repo with the config
 	err = fsrepo.Init(repoPath, cfg)