subckt.c: comment updated

This commit is contained in:
h_vogt 2013-01-25 23:52:46 +01:00
parent 07463ebd5a
commit 9c5987e7ec
1 changed files with 1 additions and 1 deletions

View File

@ -1474,7 +1474,7 @@ model_bin_match(char *token, char *model_name)
/* find last dot in model_name */
char *dot_char = strrchr(model_name, '.');
bool flag = FALSE;
/* check if token is the part before last dot in model_name */
/* check if token equals the substring before last dot in model_name */
if(dot_char) {
char *mtoken = copy_substring(model_name, dot_char);
if (cieq(mtoken, token)) {