Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
montyvesselinov committed Nov 3, 2024
2 parents fb2aa52 + 85113c7 commit 9dd6a0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DocumentFunction
================

A module for documenting Julia functions and their arguments and keywords.
Documenting Julia functions and their arguments and keywords.

<!-- [![Build Status](https://travis-ci.org/madsjulia/DocumentFunction.jl.svg?branch=master)](https://travis-ci.org/madsjulia/DocumentFunction.jl) -->
[![Coverage Status](https://coveralls.io/repos/madsjulia/DocumentFunction.jl/badge.svg?branch=master)](https://coveralls.io/r/madsjulia/DocumentFunction.jl?branch=master)
Expand Down Expand Up @@ -79,9 +79,9 @@ $(DocumentFunction.documentfunction(foobar;
""" foobar
```

To get the help for this new function type `?foobar`.
To get help for this new function, type `?foobar`.

This will produces the following output:
This will produce the following output:

```
Main.foobar
Expand Down

2 comments on commit 9dd6a0d

@montyvesselinov
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/118609

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.4.0 -m "<description of version>" 9dd6a0d1f600f756b2aac5272c0a316d9b73d5af
git push origin v1.4.0

Please sign in to comment.