Fix some more typos

This commit is contained in:
dev 2022-04-24 19:10:28 -05:00
parent 95b95437c7
commit a7943e53ea
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
<div class="col-md-12 text-center"> <div class="col-md-12 text-center">
<h1>FAQ</h1> <h1>FAQ</h1>
<hr> <hr>
<h3>I recieved a tip but I haven't been paid yet. When will I get paid?</h3> <h3>I received a tip but I haven't been paid yet. When will I get paid?</h3>
<p>Payments usually go out a few times an hour however there can be a delay. Please submit an issue if you have not been paid after 24 hours.</p> <p>Payments usually go out a few times an hour however there can be a delay. Please submit an issue if you have not been paid after 24 hours.</p>
<p>If the tip is too small, it may not be able to send if it does not cover the fee. You can fix this by sending a tip to cover the fee.</p> <p>If the tip is too small, it may not be able to send if it does not cover the fee. You can fix this by sending a tip to cover the fee.</p>
<hr> <hr>

View File

@ -37,7 +37,7 @@
<h5 class="card-title">{{ $meme->title }}</h5> <h5 class="card-title">{{ $meme->title }}</h5>
</a> </a>
<p class="card-text">By: <a href="{{ url('/user/' . $meme->user->id) }}">{{ $meme->user->name }}</a></p> <p class="card-text">By: <a href="{{ url('/user/' . $meme->user->id) }}">{{ $meme->user->name }}</a></p>
<p class="card-text">{{ $meme->meme_tips_total }} XMR Recieved</p> <p class="card-text">{{ $meme->meme_tips_total }} XMR Received</p>
<p class="card-text">{{ $meme->created_at->diffForHumans() }}</p> <p class="card-text">{{ $meme->created_at->diffForHumans() }}</p>
</div> </div>
</div> </div>

View File

@ -22,7 +22,7 @@
<a href="{{ url('/meme/' . $meme->id) }}"> <a href="{{ url('/meme/' . $meme->id) }}">
<h5 class="card-title">{{ $meme->title }}</h5> <h5 class="card-title">{{ $meme->title }}</h5>
</a> </a>
<p class="card-text">{{ $meme->meme_tips_total }} XMR Recieved</p> <p class="card-text">{{ $meme->meme_tips_total }} XMR Received</p>
<p class="card-text">{{ $meme->created_at->diffForHumans() }}</p> <p class="card-text">{{ $meme->created_at->diffForHumans() }}</p>
</div> </div>
</div> </div>