diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-09-17 13:59:15 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-10-13 10:30:49 +0200 |
commit | ffffb4af83a47979a0ecc84247bc1167abc2fbf6 (patch) | |
tree | b2a5215fd052bb3a18324ffc971ca3cece2ce2af /src/serialize.h | |
parent | fae9054793ff2a15db1a645cce3df749e0de2f39 (diff) |
scripted-diff: Use ser params operator
-BEGIN VERIFY SCRIPT-
sed -i 's|WithParams(\([a-zA-Z:._]\+\), |\1(|g' $( git grep -l WithParams )
-END VERIFY SCRIPT-
Diffstat (limited to 'src/serialize.h')
-rw-r--r-- | src/serialize.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/serialize.h b/src/serialize.h index 8b15178ec0..fd236f5a78 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -216,7 +216,7 @@ const Out& AsBase(const In& x) * which would then be invoked as * READWRITE(WithParams(BarParameter{...}, Using<FooFormatter>(obj.foo))) * - * WithParams(parameter, obj) can be invoked anywhere in the call stack; it is + * parameter(obj) can be invoked anywhere in the call stack; it is * passed down recursively into all serialization code, until another * WithParams overrides it. * |