Skip to content

Commit 6da446b

Browse files
committed
Use better words in documentation
1 parent e64997f commit 6da446b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

config/flags/flags.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -355,16 +355,14 @@ var (
355355
Name: "statedb.livecache",
356356
Usage: fmt.Sprintf("Size of live db cache in bytes. Leaving this blank (which is generally recommended),"+
357357
"or setting this to <1 will automatically allocate cache size depending on how much cache you use with %s."+
358-
"Setting this value to <=2000 will result in cache capacity of 2KB (which is the lowest value that Carmen allows)",
359-
CacheFlag.Name),
358+
"Setting this value to <=2000 will result in pre-confugired cache capacity of 2KB", CacheFlag.Name),
360359
Value: 0,
361360
}
362361
ArchiveCacheFlag = cli.IntFlag{
363362
Name: "statedb.archivecache",
364363
Usage: fmt.Sprintf("Size of archive cache in bytes. Leaving this blank (which is generally recommended),"+
365364
"or setting this to <1 will automatically allocate cache size depending on how much cache you use with %s."+
366-
"Setting this value to <=2000 will result in cache capacity of 2KB (which is the lowest value that Carmen allows)",
367-
CacheFlag.Name),
365+
"Setting this value to <=2000 will result in pre-confugired cache capacity of 2KB", CacheFlag.Name),
368366
Value: 0,
369367
}
370368
)

0 commit comments

Comments
 (0)