Skip to content

Commit

Permalink
Merge pull request #387 from shalvah/v3
Browse files Browse the repository at this point in the history
Fix rendering of query parameters description
  • Loading branch information
shalvah authored Oct 22, 2018
2 parents 118b70e + 4d35cfc commit a6a4335
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
@@ -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

0 comments on commit a6a4335

Please sign in to comment.