summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBrent Pedersen <bpederse@gmail.com>2019-09-09 20:20:35 -0600
committerBrent Pedersen <bpederse@gmail.com>2019-09-09 20:20:35 -0600
commit81c23bba7bc724519e812202742d4df2325d11d0 (patch)
tree54f6c5ca57583dfc2bbae6dee454efa7185bdce0
parent92f2d6880204666b2e4c786108eaf8a7432a4279 (diff)
downloadNim-81c23bba7bc724519e812202742d4df2325d11d0.tar.gz
spacing
-rw-r--r--lib/system/sets.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/sets.nim b/lib/system/sets.nim
index fe7df053d..ea92c3ca3 100644
--- a/lib/system/sets.nim
+++ b/lib/system/sets.nim
@@ -35,5 +35,5 @@ proc cardSet(s: NimSet, len: int): int {.compilerproc, inline.} =
     inc(result, countBits64((cast[ptr uint64](s[i].unsafeAddr))[]))
     j = i + 7
 
-  for i in (j+1)..<len:
+  for i in (j + 1) ..< len:
     inc(result, countBits32(uint32(s[i])))
22' href='#n122'>122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194