Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Tortar committed Apr 23, 2024
1 parent 870e583 commit 26b99b0
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
Expand Up @@ -17,7 +17,7 @@ This has some advantages over other sampling procedures:

## Brief overview of the functionalities

The [`itsample`](@ref) function allows to consume all the stream at once and return the sample collected:
The `itsample` function allows to consume all the stream at once and return the sample collected:

```julia
julia> using StreamSampling
Expand All @@ -32,8 +32,8 @@ julia> itsample(st, 5)
96
91
```
In some cases, one needs to control the updates the [`ReservoirSample`](@ref) will be subject to. In this case
you can simply use the [`update!`](@ref) function to fit new values in the reservoir:
In some cases, one needs to control the updates the `ReservoirSample` will be subject to. In this case
you can simply use the `update!` function to fit new values in the reservoir:

```julia
julia> using StreamSampling
Expand Down

0 comments on commit 26b99b0

Please sign in to comment.