From 65b7ca8dac2bca6d84281e7612e29c7385f16abe Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Fri, 16 Oct 2020 21:14:10 -0400 Subject: [PATCH] Corrected a few wayward commas in the "lef" command that prevented correct operation of "lef write". --- lef/lefCmd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lef/lefCmd.c b/lef/lefCmd.c index e8984361..32b9e881 100644 --- a/lef/lefCmd.c +++ b/lef/lefCmd.c @@ -112,15 +112,15 @@ CmdLef(w, cmd) static char *cmdLefOption[] = { "read [filename] read a LEF file filename[.lef]\n" - " read [filename] -import read a LEF file; import cells from .mag files\n", - " read [filename] -annotate read a LEF file for cell annotation only.", + " read [filename] -import read a LEF file; import cells from .mag files\n" + " read [filename] -annotate read a LEF file for cell annotation only." "write [filename] [-tech] write LEF for current cell\n" - " write [filename] -hide hide all details other than ports\n", + " write [filename] -hide hide all details other than ports\n" " write [filename] -hide hide details in area set back distance ", "writeall write all cells including the top-level cell\n" " writeall -notop write all children of the top-level cell\n" - " writeall -all recurse on all subcells of the top-level cell\n", - " writeall -hide hide all details other than ports\n", + " writeall -all recurse on all subcells of the top-level cell\n" + " writeall -hide hide all details other than ports\n" " writeall -hide [dist] hide details in area set back distance dist", "help print this help information", NULL