Skip to content

Commit

Permalink
Update following felp 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
atusy committed Nov 17, 2018
1 parent 44fcba1 commit ae0bc62
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# felp

felp is a short of **f**unction h**elp**.
This package provides functions to print source and help of a function simultaneously.
This package provides functions to print
source and help of a function simultaneously.

## Installation

Expand All @@ -17,11 +18,18 @@ devtools::install_github("atusy/felp")
Following codes provide same results to print help and source of `help`.

``` r
help
utils::help
?help
felp(help)
felp("help")
felp(utils::help)
felp(help, utils)
```
`print.function()` is also implemented to give the same results above
just simply entering objects name like below.
However, `print.function()` is not exported due to a conflict with
RStudio's autocompletions.

```r
help
utils::help
```

0 comments on commit ae0bc62

Please sign in to comment.