diff --git a/README.rst b/README.rst index a2619f0..3db8187 100644 --- a/README.rst +++ b/README.rst @@ -88,7 +88,7 @@ It is mainly used for performing queries, as well as managing different aspects for event in poll_result.events: print(event) - # With a static queryjob you can poll it iterativly until it has been exhausted + # With a static queryjob you can poll it iteratively until it has been exhausted queryjob = client.create_queryjob("Login Attempt Failed", is_live=False) for poll_result in queryjob.poll_until_done(): print(poll_result.metadata) diff --git a/src/humiolib/HumioClient.py b/src/humiolib/HumioClient.py index e78ebe6..770ec46 100644 --- a/src/humiolib/HumioClient.py +++ b/src/humiolib/HumioClient.py @@ -62,7 +62,7 @@ class HumioClient(BaseHumioClient): """ A Humio client that gives full access to the underlying API. While this client can be used for ingesting data, - we recommend using the HumioIngestClient made exclusivly for ingestion. + we recommend using the HumioIngestClient made exclusively for ingestion. """ def __init__(