Skip to content

Commit

Permalink
Fix rendering of query parameters description
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah authored Oct 22, 2018
1 parent b7aedfd commit 4d35cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/partials/route.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
Parameter | Status | Description
--------- | ------- | ------- | -----------
@foreach($route['queryParameters'] as $attribute => $parameter)
{{$attribute}} | @if($parameter['required']) required @else optional @endif | {!! implode(' ',$parameter['description']) !!}
{{$attribute}} | @if($parameter['required']) required @else optional @endif | {!! $parameter['description'] !!}
@endforeach
@endif

Expand Down

0 comments on commit 4d35cfc

Please sign in to comment.