Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/aws_codegen/docstring.ex
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ defmodule AWS.CodeGen.Docstring do
|> String.replace("`AVAILABLE`", "`AVAILABLE'")
# aws-sdk-go docs are broken for this, hack it to make the edocs work
|> String.replace("`PENDING`", "`PENDING'")
# aws-sdk-go docs are broken for this, hack it to make the edocs work
|> String.replace("`datasetVersion`", "`datasetVersion'")
|> String.replace("`?datasetVersion=1`", "`?datasetVersion=1'")
end

defp split_first_sentence_in_one_line(doc) do
Expand Down
Loading