Skip to content
Snippets Groups Projects
Commit 74c30471 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Correct documentation of description() to say the desciption comes from

the xref table, not from the external_db table.
parent 78a3f4fe
No related branches found
No related tags found
No related merge requests found
......@@ -308,7 +308,7 @@ sub version {
Arg [1] : (optional) String $arg - value to set
Example : none
Description: Getter/setter for attribute 'description'.
The object's description, from the external_db table
The object's description, from the xref table
Returntype : String
Exceptions : none
Caller : general
......@@ -318,9 +318,9 @@ sub version {
sub description {
my ( $self, $arg ) = @_;
if( defined $arg ) {
$self->{description} = $arg;
}
if ( defined($arg) ) { $self->{'description'} = $arg }
return $self->{description};
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment