Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs typos #74

Open
roman-wb opened this issue Mar 23, 2024 · 0 comments
Open

Docs typos #74

roman-wb opened this issue Mar 23, 2024 · 0 comments

Comments

@roman-wb
Copy link

roman-wb commented Mar 23, 2024

Hi!

I found some typos in docs.

  1. https://clickhouse.uptrace.dev/guide/clickhouse-queries.html#scan-and-exec
    Now for example "Scan columns into separate slices.":
    err := db.NewSelect().Model(&user).Column("id", "name").Limit(100).Scan(ctx, &ids, &names)
    Need:
    err := db.NewSelect().Model(&user).Column("id", "name").Limit(100).ScanColumns(ctx, &ids, &names)

  2. https://clickhouse.uptrace.dev/guide/clickhouse-drop-table.html#api
    Now for example: IfNotExists().
    Need: IfExists()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant