-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There must be one and only one newline after each documentation eleme…
- Loading branch information
1 parent
bdc8ab7
commit b1bb39c
Showing
4 changed files
with
47 additions
and
26 deletions.
There are no files selected for viewing
Submodule terraform
updated
from b93a75 to bbed86
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
|
||
* `<%= Google::StringUtils.underscore(property.name) -%>` - | ||
<% if property.required -%> | ||
(Required) | ||
<% elsif !property.output -%> | ||
(Optional) | ||
<% end -%> | ||
<%= indent(property.description.strip, 2) -%> | ||
<%= indent(property.description.strip.gsub("\n\n", "\n"), 2) -%> | ||
<% if property.is_a?(Api::Type::NestedObject) || (property.is_a?(Api::Type::Array) && property.item_type.is_a?(Api::Type::NestedObject)) -%> | ||
Structure is documented below. | ||
<% end -%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters