create script for analyzing tables

Due creating script for analyzing Tables, TOAD create just kile bellow:

BEGIN

SYS.DBMS_STATS.GATHER_TABLE_STATS (

 OwnName           => 'AXXXXXXX'

,TabName           => 'XBRLTAXONOMYEXTENDEDLINK'

,Estimate_Percent  => SYS.DBMS_STATS.AUTO_SAMPLE_SIZE

,Method_Opt        => 'FOR ALL COLUMNS SIZE 1'

,Degree            => 4

,Cascade           => TRUE

,No_Invalidate  => FALSE);

END;

/

/

Why TOAD create twice / ?

Ans how can i configure TOAD so, to create the script with only one /.

Thanks and Regards

Edik

It’s a bug. Fixed for next version.