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

Fix deprecations #752

Merged
merged 1 commit into from
Aug 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/starting.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ We start by drawing 100 observations from a standard-normal random variable.
The first step is to set up the environment:

```julia
julia> using Compat, Compat.Random, Distributions
julia> using Compat, Random, Distributions
Copy link
Member

Choose a reason for hiding this comment

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

Compat could have been removed here too but it doesn't really matter


julia> Random.seed!(123) # Setting the seed
```
Expand Down
2 changes: 0 additions & 2 deletions src/Distributions.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
__precompile__(true)

module Distributions

using StatsBase, PDMats, StatsFuns, Statistics
Expand Down