summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2018-07-26 06:36:30 +0200
committerMichele Simionato <michele.simionato@gmail.com>2018-07-26 06:36:30 +0200
commitb83a70c1abd14ecfe105efff9eea34bc38982e51 (patch)
treef328674ab7f4065d52652a87dbda0f6e8d5033a5
parente54ee57c857f787eeb85e55cd6579c9476132546 (diff)
downloadpython-decorator-git-b83a70c1abd14ecfe105efff9eea34bc38982e51.tar.gz
Fix
-rw-r--r--PITCHME.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/PITCHME.md b/PITCHME.md
index 982e260..3cff21c 100644
--- a/PITCHME.md
+++ b/PITCHME.md
@@ -76,7 +76,7 @@ FullArgSpec(args=[], varargs='args', varkw='kwds',
defaults=None, kwonlyargs=[],
kwonlydefaults=None, annotations={})
```
-`inspect.getfullargspec` is telling the truth
+and inspect.getfullargspec is telling the truth
```
>>> add.__code__.co_varnames
('args', 'kwds')