From 55b58a20ccd44a3d176cab1d7d4f15bc1dd046f5 Mon Sep 17 00:00:00 2001 From: GavinAnderberg Date: Sat, 2 Aug 2025 19:55:31 -0400 Subject: [PATCH] Correct typo gsiDeclDbNetlist.cc Corrected a typo that has the docs say the Netlist.read method 'Writes the netlist to the given file'. It now accurately matches the function behavior. --- src/db/db/gsiDeclDbNetlist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/db/gsiDeclDbNetlist.cc b/src/db/db/gsiDeclDbNetlist.cc index 792d65d15..b258f5aad 100644 --- a/src/db/db/gsiDeclDbNetlist.cc +++ b/src/db/db/gsiDeclDbNetlist.cc @@ -2269,7 +2269,7 @@ Class decl_dbNetlist ("db", "Netlist", "This method is a convenience method that runs \\make_top_level_pins, \\purge, \\combine_devices and \\purge_nets." ) + gsi::method_ext ("read", &read_netlist, gsi::arg ("file"), gsi::arg ("reader"), - "@brief Writes the netlist to the given file using the given reader object to parse the file\n" + "@brief Reads the netlist from the given file using the given reader object to parse the file\n" "See \\NetlistSpiceReader for an example for a parser. " ) + gsi::method_ext ("write", &write_netlist, gsi::arg ("file"), gsi::arg ("writer"), gsi::arg ("description", std::string ()),