Cleanup: use '#' prefix for issues instead of 'T'

Match the convention from Gitea instead of Phabricator's T for tasks.
This commit is contained in:
2023-02-12 14:37:16 +11:00
parent a02fa6c40d
commit 91346755ce
569 changed files with 1112 additions and 1115 deletions

View File

@@ -170,7 +170,7 @@ static void node_build_multi_function(NodeMultiFunctionBuilder &builder)
[](int min_value, int max_value, int id, int seed) -> int {
const float value = noise::hash_to_float(id, seed);
/* Add one to the maximum and use floor to produce an even
* distribution for the first and last values (See T93591). */
* distribution for the first and last values (See #93591). */
return floor(value * (max_value + 1 - min_value) + min_value);
},
mf::build::exec_presets::SomeSpanOrSingle<2>());