nix-doc 0.2.1

Nix documentation grepping tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{parm1, parm2}:
{
  /* This is a function blah blah
     with a long ass doc comment
   */
   the-fn = a: b: {z = a; y = b;};

   # this one
   # has multiple
   # comments
   the-snd-fn = {b, /* doc */ c}: {};
 }