diff options
author | David Thompson <dthompson2@worcester.edu> | 2018-11-30 12:16:49 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-11-30 12:17:29 -0500 |
commit | eea9dd7be5a5e2d79e2d42d15da5125e66946969 (patch) | |
tree | a8ceabfc23cdc1cae8593e28a18c61bd368040a5 /language | |
parent | d3f67ff773164522bd6eb4336a3ffa50a6af5543 (diff) |
Refactor.
Diffstat (limited to 'language')
-rw-r--r-- | language/cloudformation/spec.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/language/cloudformation/spec.scm b/language/cloudformation/spec.scm index 27e662c..1037cae 100644 --- a/language/cloudformation/spec.scm +++ b/language/cloudformation/spec.scm @@ -179,7 +179,7 @@ (version (assoc-ref exp "ResourceSpecificationVersion"))) (values `(begin (define-module (aws cloudformation ,module-suffix) - #:use-module (aws cloudformation utils) + #:use-module (aws cloudformation base) #:use-module (ice-9 match) #:use-module (oop goops) #:use-module (srfi srfi-1) @@ -193,7 +193,7 @@ env env))) (define-language cloudformation - #:title "AWS Cloudformation" + #:title "AWS CloudFormation" #:reader (lambda (port env) (if (eof-object? (peek-char port)) (read-char port) |