Compare commits

..

No commits in common. "804977c5062a191d4a45f36a1151ecae9bb2883c" and "f890431fd062d68df84a67d5d06aa390bd09c925" have entirely different histories.

2 changed files with 4 additions and 11 deletions

View file

@ -2,13 +2,6 @@ when:
branch: master
event: push
clone:
git:
image: woodpeckerci/plugin-git
settings:
partial: false
depth: 0
steps:
docs:
image: julia:1

View file

@ -82,13 +82,13 @@ value of the `UUID` is passed directly into the method.
# Examples
```jldoctest
```jldoctest; filter = r"[0-9A-Z]{26}" => "7ZK00JECBDF2H7GNBXN59C6S9S"
julia> base30encode(30)
"10"
```
```julia-repl
julia> using UUIDs; base30encode(uuid1())
julia> using UUIDs
julia> base30encode(UUIDs.uuid1())
"7ZK00JECBDF2H7GNBXN59C6S9S"
```