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.
This commit is contained in:
GavinAnderberg 2025-08-02 19:55:31 -04:00 committed by GitHub
parent 32cdcef60f
commit 55b58a20cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2269,7 +2269,7 @@ Class<db::Netlist> 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 ()),