Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

break list results misaligned with function docs in file #23

Closed
thecb4 opened this issue Apr 15, 2018 · 4 comments
Closed

break list results misaligned with function docs in file #23

thecb4 opened this issue Apr 15, 2018 · 4 comments

Comments

@thecb4
Copy link

thecb4 commented Apr 15, 2018

beak.swift file

/**
 dummy
*/
public func dummy() throws {}

/**
 Releases the product
*/
public func release(version: String) throws {
    // implementation here
    print("version \(version) released! for platform \(platform)")
}

/**
 Installs the product
*/
public func install() throws {
    // implementation here
    print("installed")
}

/**
 Deletes the product
*/
public func delete() throws {
    // implementation here
    print("deleted")
}
Functions:

  dummy: Releases the product
  release: Installs the product
  install: Deletes the product
  delete: 

would have expected:

Functions:

  dummy: dummy
  release: Releases the product
  install: Installs the product
  delete: Deletes the product

same results regardless of using /** */ or ///

@yonaskolb
Copy link
Owner

I wonder if this is related to #21
I haven't had a chance to release this yet.
Are you able to try this out from master? If you have Mint installed you can do

mint run yonaskolb/beak@master beak list

@thecb4
Copy link
Author

thecb4 commented Apr 16, 2018

yep - exactly #21 . Just tried

mint run yonaskolb/beak@master beak list

It works

@yonaskolb
Copy link
Owner

Ok cool. I'll see if I can get a new release out later today 👍

@yonaskolb
Copy link
Owner

Released in 0.3.5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants