FFAG -> FFA
The proper acronym is nowadays FFA
and since OPAL will be used in the FFA workshop tutorial I think it would be good to update the name in the codebase and everywhere. This is a minor effort and I can do this if @ext-rogers_c agrees.
Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.
The proper acronym is nowadays FFA
and since OPAL will be used in the FFA workshop tutorial I think it would be good to update the name in the codebase and everywhere. This is a minor effort and I can do this if @ext-rogers_c agrees.
It's okay, I can do it, but thanks for the offer.
Okay, reassigning then. Here is a quick way to do search replace in git files (on Linux):
git grep -l 'original_text' | xargs sed -i 's/original_text/new_text/g'
assigned to @ext-rogers_c and unassigned @snuverink_j
Well piping through git grep and piping through sed is a neat trick compared to what I did, but it didn't take much time to do it by good old find-and-replace (and now pushed to the trunk).
closed