about summary refs log tree commit diff
path: root/org-clubhouse.el
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2020-03-30T13·10-0400
committerGriffin Smith <root@gws.fyi>2020-03-30T13·10-0400
commit12313582b8ddcc8ff59ea4d610e99c6c1b423eee (patch)
tree7e93474e6519f4bc03c9024543783d70c1533c91 /org-clubhouse.el
parent0bca01b8775a7240f4e71dba062a72a427d71324 (diff)
Correct variable name in docstring
iteration-id, not project-id
Diffstat (limited to 'org-clubhouse.el')
-rw-r--r--org-clubhouse.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/org-clubhouse.el b/org-clubhouse.el
index b3f7a7f75a9f..d0f2b2c4c13b 100644
--- a/org-clubhouse.el
+++ b/org-clubhouse.el
@@ -491,7 +491,7 @@ If set to nil, will never create stories with labels")
        (alist-get 'id)))
 
 (defcache org-clubhouse-iterations
-  "Returns iterations as (project-id . name)"
+  "Returns iterations as (iteration-id . name)"
   (org-clubhouse-fetch-as-id-name-pairs "iterations"))
 
 (defun org-clubhouse-stories-in-project (project-id)
@@ -1069,7 +1069,7 @@ which labels to set."
 Create `org-mode' headlines from all the resulting stories at headline level LEVEL."
   (interactive "*nLevel: ")
   (org-clubhouse-prompt-for-iteration
-   (lambda (iteration-id) 
+   (lambda (iteration-id)
      (let ((story-list (org-clubhouse--get-iteration iteration-id)))
        (if (null story-list)
            (message "Iteration id returned no stories: %d" iteration-id)