Skip to content

Commit ed1aec2

Browse files
authored
Update README.md
1 parent 6e85e67 commit ed1aec2

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

README.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ Please feel free to request datasets for other repositories and/or projects in t
2929
</tr>
3030
<tr>
3131
<th align="right">delay</th>
32-
<td>int</td>
32+
<td>int64</td>
3333
<td>Seconds elapsed between the creation and last application of the
3434
commit (rebases can cause negative values)</td>
3535
</tr>
3636
<tr>
3737
<th align="right">age</th>
38-
<td>int</td>
38+
<td>int64</td>
3939
<td>Shortest interval between the commit and it's parents</td>
4040
</tr>
4141
<tr>
@@ -45,7 +45,7 @@ Please feel free to request datasets for other repositories and/or projects in t
4545
</tr>
4646
<tr>
4747
<th align="right">squashof</th>
48-
<td>int</td>
48+
<td>int64</td>
4949
<td>Whether it is a squash and merge commit (currently parsed from commit message)</td>
5050
</tr>
5151
<tr>
@@ -80,27 +80,27 @@ Please feel free to request datasets for other repositories and/or projects in t
8080
</tr>
8181
<tr>
8282
<th align="right">loc_d</th>
83-
<td>int</td>
83+
<td>int64</td>
8484
<td>Number of lines deleted in this commit</td>
8585
</tr>
8686
<tr>
8787
<th align="right">loc_i</th>
88-
<td>int</td>
88+
<td>int64</td>
8989
<td>Number of lines inserted in this commit</td>
9090
</tr>
9191
<tr>
9292
<th align="right">comp_d</th>
93-
<td>int</td>
93+
<td>int64</td>
9494
<td>Whitespace complexity deleted in this commit</td>
9595
</tr>
9696
<tr>
9797
<th align="right">comp_i</th>
98-
<td>int</td>
98+
<td>int64</td>
9999
<td>Whitespace complexity inserted in this commit</td>
100100
</tr>
101101
<tr>
102102
<th align="right">nfiles</th>
103-
<td>int</td>
103+
<td>int64</td>
104104
<td>Number of files (paches) affected by this commit</td>
105105
</tr>
106106
<tr>
@@ -110,7 +110,7 @@ Please feel free to request datasets for other repositories and/or projects in t
110110
</tr>
111111
<tr>
112112
<th align="right">ndiffs</th>
113-
<td>integer</td>
113+
<td>int64</td>
114114
<td>Number of diffs and parent commits</td>
115115
</tr>
116116
<tr>
@@ -189,12 +189,12 @@ diffing two revisions.
189189
</tr>
190190
<tr>
191191
<th align="right">oldsize</th>
192-
<td>int</td>
192+
<td>int64</td>
193193
<td>The file's size in bytes before applying the patch</td>
194194
</tr>
195195
<tr>
196196
<th align="right">newsize</th>
197-
<td>int</td>
197+
<td>int64</td>
198198
<td>The file's size in bytes after applying the patch</td>
199199
</tr>
200200
<tr>
@@ -219,27 +219,27 @@ diffing two revisions.
219219
</tr>
220220
<tr>
221221
<th align="right">loc_d</th>
222-
<td>int</td>
222+
<td>int64</td>
223223
<td>Number of lines deleted in this patch</td>
224224
</tr>
225225
<tr>
226226
<th align="right">loc_i</th>
227-
<td>int</td>
227+
<td>int64</td>
228228
<td>Number of lines inserted in this patch</td>
229229
</tr>
230230
<tr>
231231
<th align="right">comp_d</th>
232-
<td>int</td>
232+
<td>int64</td>
233233
<td>Whitespace complexity deleted in this commit</td>
234234
</tr>
235235
<tr>
236236
<th align="right">comp_i</th>
237-
<td>int</td>
237+
<td>int64</td>
238238
<td>Whitespace complexity inserted in this commit</td>
239239
</tr>
240240
<tr>
241241
<th align="right">loc_d_std</th>
242-
<td>float</td>
242+
<td>float32</td>
243243
<td>Deleted number of lines deviation in the hunks</td>
244244
</tr>
245245
<tr>
@@ -264,12 +264,12 @@ diffing two revisions.
264264
</tr>
265265
<tr>
266266
<th align="right">nblames</th>
267-
<td>int</td>
267+
<td>int64</td>
268268
<td>Number of unique commits this patch has churned lines from</td>
269269
</tr>
270270
<tr>
271271
<th align="right">blame_loc</th>
272-
<td>int</td>
272+
<td>int64</td>
273273
<td>Number of lines this patches has churned (deleted)</td>
274274
</tr>
275275
</tbody>
@@ -301,7 +301,7 @@ Contains blame segments for patches, an [example](https://github.com/libgit2/lib
301301
</tr>
302302
<tr>
303303
<th align="right">author_time</th>
304-
<td>datetime64</td>
304+
<td>datetime</td>
305305
<td>The author signature's timestamp</td>
306306
</tr>
307307
<tr>
@@ -326,7 +326,7 @@ Contains blame segments for patches, an [example](https://github.com/libgit2/lib
326326
</tr>
327327
<tr>
328328
<th align="right">loc_d</th>
329-
<td>int</td>
329+
<td>int64</td>
330330
<td>Number of churned lines</td>
331331
</tr>
332332
<tr>
@@ -393,7 +393,7 @@ Both lightweight and annotated tags.
393393
</tr>
394394
<tr>
395395
<th align="right">type</th>
396-
<td>int</td>
396+
<td>int64</td>
397397
<td>Git object type (mostly commit)</td
398398
</tr>
399399
<tr>

0 commit comments

Comments
 (0)