September 22, 2022
https://issues.dlang.org/show_bug.cgi?id=23359

          Issue ID: 23359
           Summary: Rename InOut to ParameterStorageClass
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P1
         Component: dlang.org
          Assignee: nobody@puremagic.com
          Reporter: qs.il.paperinik@gmail.com

Rename InOut to ParameterStorageClass

From

InOut:
    auto
    TypeCtor
    final
    in
    lazy
    out
    ref
    return
    scope

to

ParameterStorageClass:
    auto
    TypeCtor
    final
    in
    lazy
    out
    ref
    return
    scope

Note: not only change the name in functions.dd, but also in DMD.

--