Github user jorgebay commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/766#discussion_r158473167
--- Diff: docs/preprocessor/preprocess-file.sh ---
@@ -139,7 +140,7 @@ if [ ! ${SKIP} ] && [ $(grep -c '^\[gremlin' ${input})
-gt 0 ]; then
${lb} awk -f ${AWK_SCRIPTS}/language-variants.awk > ${output}
ps=(${PIPESTATUS[@]})
- for i in {0..6}; do
+ for i in {0..7}; do
--- End diff --
I'm not able to follow why this is a loop from 0 to 7... can we include a
comment or move `7` to a constant with a name?
---