| commit | 9c5c2425a86b55cd477928064537cd0581364527 | [log] [tgz] |
|---|---|---|
| author | Farhim Ferdous <37705070+AluBhorta@users.noreply.github.com> | Fri Aug 09 14:58:44 2019 -0700 |
| committer | Copybara-Service <copybara-worker@google.com> | Fri Aug 09 15:00:00 2019 -0700 |
| tree | 924c77e63e1f0b64a334bf9389756ffd932508d1 | |
| parent | b491f3ee4471aff2255a636d6d8c231b86b740ba [diff] |
fix miniature definition Closes #9101. PiperOrigin-RevId: 262640267
diff --git a/site/docs/skylark/tutorial-creating-a-macro.md b/site/docs/skylark/tutorial-creating-a-macro.md index cc75bf5..b241070 100644 --- a/site/docs/skylark/tutorial-creating-a-macro.md +++ b/site/docs/skylark/tutorial-creating-a-macro.md
@@ -40,7 +40,7 @@ name = name, srcs = [src], outs = ["small_" + src], - cmd = "convert $< -resize 100x100 $@", + cmd = "convert $< -resize " + size + " $@", **kwargs ) ```