private async Task <CommentResults> GetCommentsAsync() { const string Endpoint = "r/all/comments?limit=100"; return(await RateLimiter.LimitAsync(async() => await Api.GetAsync <CommentResults>(Endpoint))); }