Author Topic: Update Doc Comment for <current method>  (Read 2165 times)

warnerrs

  • Senior Community Member
  • Posts: 114
  • Hero Points: 4
Update Doc Comment for <current method>
« on: October 06, 2014, 07:23:10 PM »
The right click "Update Doc Comment for <foo>" does work with multi word data types in SystemVerilog.

For example:
Code: [Select]
    /**
     * do da do da do
     *
     * @param a  This is parameter a
     * @param b  This is parameter b
     * @param c  This is parameter c
     * @param d  This is parameter d
     */
    function void foo( int a, int unsigned b, int c, int unsigned d );
        // my awesome function
    endfunction

After update, that becomes:

Code: [Select]
    /**
     * do da do da do
     *
     * @param a  This is parameter a
     * @param int  This is parameter b
     * @param c  This is parameter c
     * @param int  This is parameter d
     */
    function void foo( int a, int unsigned b, int c, int unsigned d );
        // my awesome function
    endfunction

Lee

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 1299
  • Hero Points: 130
Re: Update Doc Comment for <current method>
« Reply #1 on: October 06, 2014, 08:08:54 PM »
Thanks for the report.  This will be fixed in next beta drop.