fix: URI.decode_www_formのサンプルコードでrassocがエラーを出していたので修正 #2884
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
問題箇所
URI. decode_www_formのサンプルコードで、エラーが出たので修正しました。
具体的には、以下の部分を実行すると
以下のようなエラーが出ます。
原因
これは
Array#rassoc
の動作として、配列の配列に対して要素の配列でインデックス 1 の要素が obj に等しいものを検索し見つかった最初の要素を返すので、'a'
に該当する要素が無いためにnil
が返り、last
が呼び出せなくなっています。https://docs.ruby-lang.org/ja/latest/method/Array/i/rassoc.html
修正内容
インデックス 1 の要素である
'2'
をrassoc
の引数に指定し、last
のままだと引数がそのまま返ってしまうので、インデックス0の値が返るようにfirst
を呼び出すようにしました。また、メソッド名が1文字長くなったので、インデントを揃えました。
修正後
以下のように動作します。
"a"