Tutorial for PersistentSubscriptions for .NET is wrong

In tutorial for gRPC client says

await client.CreateAsync(
    "test-stream",
    "subscription-group",
    settings,
    userCredentials: userCredentials);

but there is no CreateAsync method on the client in 22.0.0 release

Also, there is no Ack method returned from SubscribeToAllAsync. Persistent and Catchup subscritions seem to have same code in documentation.

Ok, digging around the code for persistent subscriptions, I found out that there is a EventStorePersistentSubscriptionsClient type that should be use for persistent subscriptions. You probably should make this more obvious in documentation instead of just referring to it as “client”