From 0eed53222cf81f204f99037debffbbf13a039531 Mon Sep 17 00:00:00 2001 From: Carsten Kraus Date: Wed, 25 Mar 2020 22:42:05 +0100 Subject: [PATCH] Fix typo in docstring lil typo, fixed : ) --- posthog/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/__init__.py b/posthog/__init__.py index 10fa6f9a..b9cd9058 100644 --- a/posthog/__init__.py +++ b/posthog/__init__.py @@ -48,7 +48,7 @@ def identify(distinct_id: str, properties: Optional[Dict]=None, context: Optiona For example: ```python - posthog.capture('distinct id', { + posthog.identify('distinct id', { 'email': 'dwayne@gmail.com', 'name': 'Dwayne Johnson' })