diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-20 11:58:23 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-20 11:58:23 +0100 |
commit | 1082237832d5ccabb770711bd9fe6602e537f012 (patch) | |
tree | 5beebee39e47c39f93d50d786d3d9247a58c74e3 /www/build-site.el | |
parent | 25d14f5078495f20085c22f82a2b98e6fd39b739 (diff) |
Fix name convention of the project getter
Unify the naming convention of the project getter function to mirror the
:object-get-projects method.
Diffstat (limited to 'www/build-site.el')
-rw-r--r-- | www/build-site.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/build-site.el b/www/build-site.el index af692e7..d9c0f62 100644 --- a/www/build-site.el +++ b/www/build-site.el @@ -26,7 +26,7 @@ ( defun object-compose ( publication-instance ) ( plist-get publication-instance :object-compose ) ) -( defun object-projects ( publication-instance ) +( defun object-get-projects ( publication-instance ) ( plist-get publication-instance :object-get-projects ) ) ( defun object-report ( publication-instance ) @@ -34,7 +34,7 @@ ( defun publish ( publication-instance &rest project-data ) ( let ( ( data-projects ( plist-get project-data :data-projects ) ) ) - ( funcall ( object-projects publication-instance ) data-projects ) + ( funcall ( object-get-projects publication-instance ) data-projects ) ( funcall ( object-compose publication-instance ) ) ( funcall ( object-report publication-instance ) ) ( ) ) ) |