0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

typo一覧

Posted at

タイポ【typo】とは、
俗語の一つで、コンピュータの入力装置の操作ミスなどによって生じた英単語の綴り間違いや誤入力、誤記、誤変換などのこと。

自分のタイポ例を挙げていきたいとおもう。

<例1>
[誤]

   public function index(Request $Request)
{
    $data = [
        'msg'=>'これはコントローラから渡されたメッセージです。',
        'id'=>$request->id
];
return view('hello.index', $data);

}

[正]

   public function index(Request $request)
{
    $data = [
        'msg'=>'これはコントローラから渡されたメッセージです。',
        'id'=>$request->id
];
return view('hello.index', $data);

}

===========================
public function index(Request $request)
→$requestのRを大文字にしていて、$Requestにしていた。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?