Skip to content

Commit

Permalink
docs: fix typos in d/users.html.markdown (#1049)
Browse files Browse the repository at this point in the history
data.github_user -> data.github_users

Co-authored-by: Keegan Campbell <me@kfcampbell.com>
  • Loading branch information
pallxk and kfcampbell authored Mar 25, 2022
1 parent a86f95d commit 5a030d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/d/users.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ data "github_users" "example" {
}
output "valid_users" {
value = "${data.github_user.example.logins}"
value = "${data.github_users.example.logins}"
}
output "invalid_users" {
value = "${data.github_user.example.unknown_logins}"
value = "${data.github_users.example.unknown_logins}"
}
```

Expand Down

0 comments on commit 5a030d9

Please sign in to comment.