summaryrefslogtreecommitdiff
path: root/python/testData/inspections/DocstringParams_after.py
blob: c80bc80b6f842b7fc3f235f324799c919b903c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
""" file's docstring """
def foo(a, b, f):
  """
  some description
  another line of description

  @param b: 
  @param a: some description
            of param
  @param c: another description
            of param
  @return:
  """
  pass