Skip to content

Commit c545219

Browse files
committed
🚨 Linting
1 parent 54d9624 commit c545219

33 files changed

+108
-9031
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Detects structured tokens like `{KJ|GEM_NAME}` in any file format and resolves t
3636
# One-liner: parse and resolve
3737
result = Token::Resolver.resolve(
3838
"Hello {KJ|NAME}, welcome to {KJ|PROJECT}!",
39-
{"KJ|NAME" => "World", "KJ|PROJECT" => "my-app"}
39+
{"KJ|NAME" => "World", "KJ|PROJECT" => "my-app"},
4040
)
4141
# => "Hello World, welcome to my-app!"
4242
```
@@ -180,7 +180,7 @@ doc.text_only? # => false
180180
# Resolve tokens
181181
result = Token::Resolver.resolve(
182182
"Deploy {KJ|GEM_NAME} to {KJ|GH_ORG}",
183-
{"KJ|GEM_NAME" => "my-gem", "KJ|GH_ORG" => "my-org"}
183+
{"KJ|GEM_NAME" => "my-gem", "KJ|GH_ORG" => "my-org"},
184184
)
185185
# => "Deploy my-gem to my-org"
186186
```

0 commit comments

Comments
 (0)