mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
added empty line to comment generation
This commit is contained in:
@@ -818,7 +818,7 @@ public class PythonDocumentationProvider extends AbstractDocumentationProvider i
|
||||
|
||||
private String generateContent(PyFunction element, String offset, String prefix) {
|
||||
PyParameter[] list = element.getParameterList().getParameters();
|
||||
StringBuilder builder = new StringBuilder();
|
||||
StringBuilder builder = new StringBuilder(offset);
|
||||
for(PyParameter p : list) {
|
||||
builder.append(prefix);
|
||||
builder.append("param ");
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
|
||||
def foo(a, b):
|
||||
"""
|
||||
<caret>
|
||||
@param a:
|
||||
@param b:
|
||||
@return:
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
|
||||
def foo(a, b):
|
||||
"""
|
||||
<caret>
|
||||
:param a:
|
||||
:param b:
|
||||
:return:
|
||||
|
||||
Reference in New Issue
Block a user