Skip to content

Commit 2c70218

Browse files
committed
typo
1 parent 8c4b379 commit 2c70218

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout SetIntersectionProjection
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232

3333
- name: Setup julia
3434
uses: julia-actions/setup-julia@v1

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SetIntersectionProjection"
22
uuid = "335f7d24-6316-57dd-9c3a-df470f2b739e"
33
authors = ["Bas Peters <[email protected]>"]
4-
version = "0.2.3"
4+
version = "0.2.4"
55

66
[deps]
77
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"

src/SetIntersectionProjection.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ using TimerOutputs
2222
export log_type_PARSDMM, set_properties, PARSDMM_options, set_definitions
2323

2424
const _verbose = false
25-
constr_log(msg...) = _verbose ? nothing : println(msg...)
25+
26+
constr_log(msg...) = _verbose ? println(msg...) : nothing
2627

2728
#main scripts
2829
include("PARSDMM.jl")

0 commit comments

Comments
 (0)