Skip to content

Commit 8631f37

Browse files
committed
Remove some jobs from travis
1 parent 0a994c7 commit 8631f37

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
language: julia
22

33
os:
4-
- osx
54
- linux
65

76
julia:
8-
- 1.0
97
- 1.1
10-
- 1.2
118
- nightly
129

1310
notifications:

src/CryptoUtils.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ end
297297
Output the first `k` prime numbers
298298
299299
```julia
300-
julia> julia> get_first_primes(10)
300+
julia> get_first_primes(10)
301301
10-element Array{Int64,1}:
302302
2
303303
3
@@ -373,7 +373,7 @@ end
373373
"""
374374
factor_with_ed(n::Integer, e::Integer, d::Integer) -> (Integer, Integer)
375375
376-
Factors `n = p*q` given `(e, d)` s.t. `e*d = 1 mod phi(n)`
376+
Factors `n = p*q` given `(e, d)` such that `e*d = 1 mod phi(n)`
377377
Stinson page 204 - algorithm 5.10
378378
"""
379379
function factor_with_ed(n::Integer, e::Integer, d::Integer)

0 commit comments

Comments
 (0)